6 lines
112 B
C
6 lines
112 B
C
#include <stdio.h>
|
|
int main() {
|
|
int result, x;
|
|
printf("%d", (5 > 3 && 2 || 8 < 4 - !0));
|
|
return 0;
|
|
} |