#include<stdio.h>
int main() {
int a;
printf("输入:");
scanf("%d", &a);
if (a >= 160)
printf("输出:Genius");
return 0;
}
相关推荐