fork download
  1. #include <stdio.h>
  2. int main() {
  3. int x;
  4. scanf("%d",&x);
  5. printf("%d\n",x*x*x*x);
  6. return 0;
  7. }
Success #stdin #stdout 0s 5288KB
stdin
3
stdout
81