power.cpp: In function 'int main()':
power.cpp:24:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
24 | scanf("%d",&n);
| ~~~~~^~~~~~~~~
power.cpp:26:14: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
26 | scanf("%d %d",&a,&b);
| ~~~~~^~~~~~~~~~~~~~~
power.cpp:30:10: warning: ignoring return value of 'int scanf(const char*, ...)' declared with attribute 'warn_unused_result' [-Wunused-result]
30 | scanf(" %s",s+1);
| ~~~~~^~~~~~~~~~~