# 1번째 컴파일 단계
Anna.cpp: In function 'void InitA(int, int, int)':
Anna.cpp:16:26: error: expected ';' before ')' token
16 | a[i] = (L >> i) & 1);
| ^
| ;
Anna.cpp:17:7: error: 'sendA' was not declared in this scope; did you mean 'SendA'?
17 | sendA(a[i]);
| ^~~~~
| SendA
Anna.cpp:20:48: error: 'sendA' was not declared in this scope; did you mean 'SendA'?
20 | if((R >> i & 1) != (L >> i & 1) && !a[i])sendA(1);
| ^~~~~
| SendA
Anna.cpp:21:52: error: 'sendA' was not declared in this scope; did you mean 'SendA'?
21 | else if((R >> i & 1) != (L >> i & 1) && a[i])sendA(1);
| ^~~~~
| SendA
Anna.cpp:22:12: error: 'sendA' was not declared in this scope; did you mean 'SendA'?
22 | else sendA(0);
| ^~~~~
| SendA
Anna.cpp: In function 'void ReceiveA(bool)':
Anna.cpp:27:8: error: 'y' was not declared in this scope
27 | if(y)ans += (1 << count);
| ^