Main.cc:1:1: error: ‘include’ does not name a type
1 | include <bits/stdc++.h>
| ^~~~~~~
Main.cc: In function ‘void solve()’:
Main.cc:7:1: error: ‘string’ was not declared in this scope
7 | string a;
| ^~~~~~
Main.cc:8:9: error: ‘cin’ was not declared in this scope
8 | getline(cin, a);
| ^~~
Main.cc:8:14: error: ‘a’ was not declared in this scope
8 | getline(cin, a);
| ^
Main.cc:8:1: error: ‘getline’ was not declared in this scope
8 | getline(cin, a);
| ^~~~~~~
Main.cc:18:7: error: expected ‘;’ before ‘b’
18 | string b;
| ^~
| ;
Main.cc:19:8: error: ‘b’ was not declared in this scope
19 | cin >> b;
| ^
Main.cc:20:1: error: ‘getchar’ was not declared in this scope
20 | getchar();
| ^~~~~~~
Main.cc:1:1: note: ‘getchar’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’?
+++ |+#include <cstdio>
1 | include <bits/stdc++.h>
Main.cc:29:1: error: ‘cout’ was not declared in this scope
29 | cout << ans << endl;
| ^~~~
Main.cc:29:16: error: ‘endl’ was not declared in this scope
29 | cout << ans << endl;
| ^~~~
Main.cc:5:5: warning: unused variable ‘n’ [-Wunused-variable]
5 | int n;
| ^
Main.cc: In function ‘int main()’:
Main.cc:34:1: error: ‘cin’ was not declared in this scope
34 | cin >> t;
| ^~~
Main.cc:35:1: error: ‘getchar’ was not declared in this scope
35 | getchar();
| ^~~~~~~
Main.cc:35:1: note: ‘getchar’ is defined in header ‘<cstdio>’; did you forget to ‘#include <cstdio>’?