#include <stdio.h>
int main() {
int x = 5;
int y = 3;
// Returns false (0) because ! (not) is used to reverse the result
printf("%d", !(x > 3 && x < 10));
return 0;
}