fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. printf("Hello!\n");
  6.  
  7. printf("2+3=%d\n",2+3);
  8.  
  9.  
  10.  
  11. double e,f;
  12. scanf("%lf %lf",&e,&f);
  13. printf("e/f=%.1f\n",e/f);
  14. }
  15.  
Success #stdin #stdout 0s 5312KB
stdin
24 7
stdout
Hello!
2+3=5
e/f=3.4