fork download
  1. #include <stdio.h>
  2.  
  3. long long intpow(int a, int b)
  4. {
  5. long long tempres = 1;
  6. while(b--)
  7. tempres *= a;
  8. return tempres;
  9. }
  10.  
  11. int main(void) {
  12.  
  13. printf("%lld\n", intpow(123,5));
  14. return 0;
  15. }
  16.  
Success #stdin #stdout 0s 4320KB
stdin
Standard input is empty
stdout
28153056843