Main.cpp:1:1: error: expected unqualified-id before '>' token
1 | >
| ^
Main.cpp:30:13: error: 'pair' does not name a type
30 | using pll = pair<ll, ll>;
| ^~~~
Main.cpp:31:13: error: 'pair' does not name a type
31 | using pii = pair<int, int>;
| ^~~~
Main.cpp:34:13: error: 'vector' does not name a type
34 | using vec = vector<Args...>;
| ^~~~~~
Main.cpp:36:1: error: 'mt19937' does not name a type
36 | mt19937 timmy_loves_gambling(73);
| ^~~~~~~
Main.cpp:38:1: error: 'pll' does not name a type; did you mean 'll'?
38 | pll len_sum(ll x, int b) {
| ^~~
| ll
Main.cpp: In function 'int main()':
Main.cpp:52:5: error: 'ios' has not been declared
52 | ios::sync_with_stdio(0);
| ^~~
Main.cpp:53:5: error: 'cin' was not declared in this scope
53 | cin.tie(0); cout.tie(0);
| ^~~
Main.cpp:53:17: error: 'cout' was not declared in this scope
53 | cin.tie(0); cout.tie(0);
| ^~~~
Main.cpp:60:31: error: 'len_sum' was not declared in this scope; did you mean 'enum'?
60 | auto [len, sum] = len_sum(N, b);
| ^~~~~~~
| enum