#include <stdio.h>
int main() {
int x = 10;
int y = 9;
printf("%d", x > y); // 返回 1 (真),因为 10 大于 9
return 0;
}