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