fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int a;
  8. int b;
  9.  
  10. a=10*((14+6)/2);
  11. b = 5 % 3;
  12.  
  13. a=a*6;
  14. a+=1;
  15. a=a+1;
  16. a++;
  17.  
  18. b=b-10;
  19. b--;
  20.  
  21.  
  22. printf("%d\n", a);
  23. printf("%d\n", b);
  24.  
  25. }
  26.  
Success #stdin #stdout 0.01s 5308KB
stdin
Standard input is empty
stdout
603
-9