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