#include <stdio.h>
int main() {
printf("%d", 10 > 9); // Returns 1 (true) because 10 is greater than 9
return 0;
}