Run id: 135074

Main.cc: In function 'int main()':
Main.cc:10:14: error: expected ';' before '<=' token
     for(int i<=m;i<=n;i++){
              ^
Main.cc:10:14: error: expected primary-expression before '<=' token
Main.cc:10:19: warning: for increment expression has no effect [-Wunused-value]
     for(int i<=m;i<=n;i++){
                   ^
Main.cc:10:22: error: expected ')' before ';' token
     for(int i<=m;i<=n;i++){
                      ^
Main.cc:10:23: error: 'i' was not declared in this scope
     for(int i<=m;i<=n;i++){
                       ^
Main.cc:19:13: warning: suggest parentheses around assignment used as truth value [-Wparentheses]
     if(sum=0){
             ^
Main.cc:8:13: warning: unused variable 'x' [-Wunused-variable]
     int m,n,x=0,y=0,z=0,sum=0;
             ^
Main.cc:8:17: warning: unused variable 'y' [-Wunused-variable]
     int m,n,x=0,y=0,z=0,sum=0;
                 ^
Main.cc:8:21: warning: unused variable 'z' [-Wunused-variable]
     int m,n,x=0,y=0,z=0,sum=0;
                     ^