#include <stdio.h>
int main() {
int myAge = 25;
int votingAge = 18;
printf("%d", myAge >= votingAge); // 返回 1 (真),表示 25 岁可以投票!
return 0;
}