Main.cpp: In function 'void F(int, int)':
Main.cpp:20:18: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
20 | char x; scanf(" %c", &x);
| ~~~~~^~~~~~~~~~~
Main.cpp: In function 'int main()':
Main.cpp:26:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | scanf("%d%lf%d", &N, &P, &T);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~~~
Main.cpp:34:22: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
34 | char x; scanf("%c", &x);
| ~~~~~^~~~~~~~~~