input/code.cpp: In function 'int main()':
input/code.cpp:16:27: error: expected ';' before 'if'
16 | scanf("%d %d", &a, &b)
| ^
| ;
17 | if(a==b)
| ~~
input/code.cpp: In function 'void Test()':
input/code.cpp:10:12: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
10 | freopen("temp\\in.txt", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
input/code.cpp: In function 'int main()':
input/code.cpp:16:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
16 | scanf("%d %d", &a, &b)
| ~~~~~^~~~~~~~~~~~~~~~~