Main.cc: In function 'int main()':
Main.cc:7:9: warning: comparisons like 'X<=Y<=Z' do not have their mathematical meaning [-Wparentheses]
while(3<n<10000){
^
Main.cc:5:16: warning: unused variable 'r' [-Wunused-variable]
int n,w=0,i=2,r;
^
Main.cc: At global scope:
Main.cc:19:2: error: expected unqualified-id before 'return'
return 0;
^
Main.cc:20:1: error: expected declaration before '}' token
}
^