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