8 lines
102 B
C
8 lines
102 B
C
#include <stdio.h>
|
|
int main() {
|
|
int x = 7;
|
|
int y = 5;
|
|
printf ("%d\n", !(x > 4 && y > 4));
|
|
|
|
}
|