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