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