tents.cpp: In function 'long long int dp(long long int, long long int)':
tents.cpp:66:27: warning: value computed is not used [-Wunused-value]
66 | (ans += dp(i, j - 1)) % mod;
| ~~~~~~~~~~~~~~~~~~~~~~^~~~~
tents.cpp:67:55: warning: value computed is not used [-Wunused-value]
67 | (ans += ((4 * i) % mod * dp(i - 1, j - 1)) % mod) % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
tents.cpp:68:63: warning: value computed is not used [-Wunused-value]
68 | (ans += (i * (i - 1) / 2 % mod * dp(i - 2, j - 1)) % mod) % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
tents.cpp:69:61: warning: value computed is not used [-Wunused-value]
69 | (ans += ((i * (j - 1)) % mod * dp(i - 1, j - 2)) % mod) % mod;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~
tents.cpp: At global scope:
tents.cpp:21:41: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
21 | #define ______________TgX______________ main()
| ^~~~
tents.cpp:84:1: note: in expansion of macro '______________TgX______________'
84 | ______________TgX______________ {
| ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
tents.cpp: In function 'int main()':
tents.cpp:88:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
88 | freopen("temp.inp", "r", stdin);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~
tents.cpp:89:16: warning: ignoring return value of 'FILE* freopen(const char*, const char*, FILE*)' declared with attribute 'warn_unused_result' [-Wunused-result]
89 | freopen("temp.out", "w", stdout);
| ~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~