fork download
  1. #include<stdio.h>
  2.  
  3. main(){
  4. int hours;
  5. scanf("%d",&hours);
  6. int heights=146;
  7. heights+=hours;
  8. printf("%d cm", heights);
  9. }
Success #stdin #stdout 0s 5320KB
stdin
7
stdout
153 cm