/in/foo.cc: In function 'void go(int, int)':
/in/foo.cc:7:19: warning: unused variable 'k' [-Wunused-variable]
register int i,j,k;
^
/in/foo.cc: In function 'int main()':
/in/foo.cc:35:23: error: 'sync_with_stdio' was not declared in this scope
ios:sync_with_stdio(0);
^
/in/foo.cc:39:6: error: redeclaration of 'int i'
int i,x,y;
^
/in/foo.cc:37:15: note: 'int i' previously declared here
register int i,j,k;
^
/in/foo.cc:37:17: warning: unused variable 'j' [-Wunused-variable]
register int i,j,k;
^
/in/foo.cc:37:19: warning: unused variable 'k' [-Wunused-variable]
register int i,j,k;
^
/in/foo.cc:35:2: warning: label 'ios' defined but not used [-Wunused-label]
ios:sync_with_stdio(0);
^~~