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 = 11;
  13. a = a+1210;
  14. b = b + 13;
  15. b = b % 3;
  16.  
  17. a += 1;
  18. a -= 1;
  19.  
  20. printf("%d\n",a);
  21. }
Success #stdin #stdout 0s 5324KB
stdin
Standard input is empty
stdout
1310