fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int x;
  5. scanf("%d",&x);
  6. x=x*x*x;
  7. printf("%d",x);
  8. return 0;
  9. }
Success #stdin #stdout 0.01s 5320KB
stdin
5
stdout
125