题解 | #你是天才吗?#
你是天才吗?
https://www.nowcoder.com/practice/557cc54704bb4d56b73b62d1a5455331
#include<bits/stdc++.h>
using namespace std;
int main() {
int a;
while (cin >> a) { //循环输入
if (a >= 140) cout << "Genius" <<
endl; //判断,如若智商>=140,那么输出"Genius"。
}
}