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