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