Main.cc:33:9: error: stray ‘#’ in program
33 | else#include
| ^
Main.cc: In function ‘int main()’:
Main.cc:32:9: warning: suggest parentheses around comparison in operand of ‘&’ [-Wparentheses]
32 | if(x==0&y==0)printf("%d",t);
| ~^~~
Main.cc:33:10: error: ‘include’ was not declared in this scope
33 | else#include
| ^~~~~~~
Main.cc:33:18: error: ‘stdio’ was not declared in this scope; did you mean ‘stdin’?
33 | else#include
| ^~~~~
| stdin
Main.cc:35:1: error: expected primary-expression before ‘int’
35 | int main()
| ^~~
Main.cc:6:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
6 | scanf("%d %d %d",&n,&x,&y);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
Main.cc:12:14: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
12 | scanf("%d",&temp);
| ~~~~~^~~~~~~~~~~~