fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. { int a=1;
  7. int b=2;
  8. int c=3;
  9.  
  10. if(a==1){
  11. printf("大吉");
  12. }
  13. if(b==1){
  14. printf("中吉");
  15. }
  16. if(c==1){
  17. printf("大吉");
  18. }
  19. }
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
大吉