Main.cpp: In function 'int main()':
Main.cpp:54:38: error: 'cite' was not declared in this scope
54 | if (!(cin >> n >> k)) return 0; [cite: 17]
| ^~~~
Main.cpp:54:42: error: expected ',' before ':' token
54 | if (!(cin >> n >> k)) return 0; [cite: 17]
| ^
| ,
Main.cpp:54:42: error: expected identifier before ':' token
Main.cpp: In lambda function:
Main.cpp:57:5: error: expected '{' before 'if'
57 | if (k < n) {
| ^~
Main.cpp: In function 'int main()':
Main.cpp:54:47: error: expected ';' before 'if'
54 | if (!(cin >> n >> k)) return 0; [cite: 17]
| ^
| ;
......
57 | if (k < n) {
| ~~
Main.cpp:75:67: error: expected ',' before ':' token
75 | long long ans = (Fn * modInverse(total_outcomes)) % MOD; [cite: 15]
| ^
| ,
Main.cpp:75:67: error: expected identifier before ':' token
Main.cpp: In lambda function:
Main.cpp:77:5: error: expected '{' before 'cout'
77 | cout << ans << endl; [cite: 19]
| ^~~~
Main.cpp: In function 'int main()':
Main.cpp:75:72: error: expected ';' before 'cout'
75 | long long ans = (Fn * modInverse(total_outcomes)) % MOD; [cite: 15]
| ^
| ;
76 |
77 | cout << ans << endl; [cite: 19]
| ~~~~
Main.cpp:77:31: error: expected ',' before ':' token
77 | cout << ans << endl; [cite: 19]
| ^
| ,
Main.cpp:77:31: error: expected identifier before ':' token
Main.cpp: In lambda function:
Main.cpp:79:5: error: expected '{' before 'return'
79 | return 0;
| ^~~~~~
Main.cpp: In function 'int main()':
Main.cpp:77:36: error: expected ';' before 'return'
77 | cout << ans << endl; [cite: 19]
| ^
| ;
78 |
79 | return 0;
| ~~~~~~