clo.cpp:5:17: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+18' to '2147483647' [-Woverflow]
5 | const int INF = 1e18;
| ^~~~
clo.cpp: In function 'int main()':
clo.cpp:20:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
20 | int n; scanf("%d",&n);
| ~~~~~^~~~~~~~~
clo.cpp:22:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
22 | int c,f,v; scanf("%d %d %d",&c,&f,&v);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
clo.cpp:26:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | int m; scanf("%d",&m);
| ~~~~~^~~~~~~~~
clo.cpp:28:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
28 | int c,f,v; scanf("%d %d %d",&c,&f,&v);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~