fork download
  1. #include <stdio.h>
  2. #include <math.h>
  3.  
  4. void main()
  5. {
  6. int number, power, result;
  7.  
  8. scanf("%d", &number);
  9.  
  10. scanf("%d", &power);
  11.  
  12. result = pow( number, power );
  13.  
  14. printf("%d",result);
  15. }
Success #stdin #stdout 0s 5532KB
stdin
Standard input is empty
stdout
-2147483648