fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4.  
  5. int main()
  6. {
  7. int r=2, s=5, x=3, t=-1, y=1, z=0, A,B,C,D;
  8.  
  9. A= (r>=5)|(t>2)&&!(x-y+r>3*z);
  10. printf("%d", A);
  11.  
  12. B=(t + 3>=4 ) &&! (3*r/2<s*3);
  13. printf ("%d",B);
  14.  
  15.  
  16.  
  17. }
Success #stdin #stdout 0s 5516KB
stdin
Standard input is empty
stdout
00