gap.cpp: In function 'int main()':
gap.cpp:54:44: error: 'subtask_num' was not declared in this scope
54 | my_assert(2 == fscanf(in, "%d%d", &subtask_num, &N));
| ^~~~~~~~~~~
gap.cpp:54:58: error: 'N' was not declared in this scope
54 | my_assert(2 == fscanf(in, "%d%d", &subtask_num, &N));
| ^
gap.cpp:54:9: error: 'my_assert' was not declared in this scope; did you mean 'assert'?
54 | my_assert(2 == fscanf(in, "%d%d", &subtask_num, &N));
| ^~~~~~~~~
| assert
gap.cpp:57:66: error: 'A' was not declared in this scope
57 | for (int i=1;i<=N;i++) my_assert(1 == fscanf(in, "%lld", A+i));
| ^
gap.cpp:58:41: error: 'A' was not declared in this scope
58 | for (int i=1;i<N;i++) my_assert(A[i] < A[i+1]);
| ^
gap.cpp:60:32: error: 'call_count' was not declared in this scope
60 | fprintf(out, "%lld\n", call_count);
| ^~~~~~~~~~