bank.cpp:20:38: error: stray '#' in program
20 | for (int i = 0; i < n; ++i) {#include <bits/stdc++.h>
| ^
bank.cpp: In function 'int main()':
bank.cpp:20:48: error: 'bits' was not declared in this scope
20 | for (int i = 0; i < n; ++i) {#include <bits/stdc++.h>
| ^~~~
bank.cpp:20:53: error: 'stdc' was not declared in this scope; did you mean 'std'?
20 | for (int i = 0; i < n; ++i) {#include <bits/stdc++.h>
| ^~~~
| std
bank.cpp:20:39: error: 'include' was not declared in this scope
20 | for (int i = 0; i < n; ++i) {#include <bits/stdc++.h>
| ^~~~~~~
bank.cpp:22:17: error: expected primary-expression before 'using'
22 | using namespace std;
| ^~~~~
bank.cpp:24:25: warning: empty parentheses were disambiguated as a function declaration [-Wvexing-parse]
24 | int main() {
| ^~
bank.cpp:24:25: note: remove parentheses to default-initialize a variable
24 | int main() {
| ^~
| --
bank.cpp:24:25: note: or replace parentheses with braces to value-initialize a variable
bank.cpp:24:28: error: a function-definition is not allowed here before '{' token
24 | int main() {
| ^