void main(void) { int a; int b; int c; a = 1 < 3; b = 2 == 4; c = 3 > 5; output(a); output(b); output(c); return; }