# 1번째 컴파일 단계
Anna.cpp: In function 'void ReceiveA(bool)':
Anna.cpp:24:20: error: 'a' was not declared in this scope
24 | if(count == 10)a[k] = sum, k ++, count = 0;
| ^
Anna.cpp:25:13: error: 'n' was not declared in this scope
25 | if(k == n){
| ^
Anna.cpp:27:57: error: 'a' was not declared in this scope
27 | for(int i = L; i <= R; i ++)ans = std::min(ans, a[i]);
| ^
Anna.cpp: At global scope:
Anna.cpp:32:6: error: ambiguating new declaration of 'void Answer()'
32 | void Answer() {
| ^~~~~~
In file included from Anna.cpp:1:
Anna.h:3:5: note: old declaration 'int Answer()'
3 | int Answer();
| ^~~~~~
Anna.cpp: In function 'void Answer()':
Anna.cpp:33:10: error: return-statement with a value, in function returning 'void' [-fpermissive]
33 | return ans;
| ^~~