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