Main.cpp: In function 'int main()':
Main.cpp:13:12: error: 'n' was not declared in this scope; did you mean 'yn'?
13 | cin >> n;
| ^
| yn
Main.cpp:18:9: error: 'sum' was not declared in this scope
18 | sum += x;
| ^~~
Main.cpp:19:9: error: 'mn' was not declared in this scope; did you mean 'yn'?
19 | mn = min(mn, x);
| ^~
| yn
Main.cpp:21:23: error: 'mn' was not declared in this scope; did you mean 'yn'?
21 | cout << (n - 2) * mn + sum;
| ^~
| yn
Main.cpp:21:28: error: 'sum' was not declared in this scope
21 | cout << (n - 2) * mn + sum;
| ^~~