Run id: 100759

Main.cc: In function 'int main()':
Main.cc:7:20: error: expected primary-expression before ',' token
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                    ^
Main.cc:7:21: error: 'j' was not declared in this scope
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                     ^
Main.cc:7:29: error: expected ')' before ';' token
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                             ^
Main.cc:7:16: warning: unused variable 'i' [-Wunused-variable]
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                ^
Main.cc:7:30: error: 'i' was not declared in this scope
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                              ^
Main.cc:7:35: error: 'j' was not declared in this scope
        for(int i=1;,j=2;j<=n;i+=2,j+=2)
                                   ^