0_0_39660214_10466.cpp: In function 'll C(ll, ll)':
0_0_39660214_10466.cpp:9:30: error: 'MOD' was not declared in this scope
9 | return fac[y] * inv[x] % MOD * inv[y - x] % MOD;
| ^~~
0_0_39660214_10466.cpp: In function 'int main()':
0_0_39660214_10466.cpp:35:37: error: 'MOD' was not declared in this scope
35 | fac[i] = (fac[i - 1] * i) % MOD;
| ^~~
0_0_39660214_10466.cpp:36:18: error: 'qpow' was not declared in this scope; did you mean 'pow'?
36 | inv[i] = qpow(fac[i], MOD - 2);
| ^~~~
| pow
|