Run id: 154808

Main.cc: In function 'int main()':
Main.cc:7:10: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
     for(0<=m<=n<=1000;m+=2){
          ^
Main.cc:7:16: warning: comparison of constant '1000' with boolean expression is always true [-Wbool-compare]
     for(0<=m<=n<=1000;m+=2){
                ^
Main.cc:7:13: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
     for(0<=m<=n<=1000;m+=2){
             ^
Main.cc:7:22: warning: statement has no effect [-Wunused-value]
     for(0<=m<=n<=1000;m+=2){
                      ^
Main.cc:7:27: error: expected ';' before ')' token
     for(0<=m<=n<=1000;m+=2){
                           ^
Main.cc:10:10: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
     for(0<=m<=n<=1000;m++){
          ^
Main.cc:10:16: warning: comparison of constant '1000' with boolean expression is always true [-Wbool-compare]
     for(0<=m<=n<=1000;m++){
                ^
Main.cc:10:13: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
     for(0<=m<=n<=1000;m++){
             ^
Main.cc:10:22: warning: statement has no effect [-Wunused-value]
     for(0<=m<=n<=1000;m++){
                      ^
Main.cc:10:26: error: expected ';' before ')' token
     for(0<=m<=n<=1000;m++){
                          ^