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