fork download
  1. #include<stdio.h>
  2. int main(void)
  3.  
  4. {
  5. int x,y,z;
  6. scanf("%d",&x);
  7. y=x*100;
  8. printf("%d\n",y);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0.01s 5288KB
stdin
110
stdout
11000