clo.cpp: In function 'int main()':
clo.cpp:18:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
18 | int n; scanf("%d",&n);
| ~~~~~^~~~~~~~~
clo.cpp:20:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
20 | int c,f,v; scanf("%d %d %d",&c,&f,&v);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~
clo.cpp:24:17: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
24 | int m; scanf("%d",&m);
| ~~~~~^~~~~~~~~
clo.cpp:26:25: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | int c,f,v; scanf("%d %d %d",&c,&f,&v);
| ~~~~~^~~~~~~~~~~~~~~~~~~~~