15 lines
268 B
C++
15 lines
268 B
C++
#include <bits/stdc++.h>
|
||
|
||
using namespace std;
|
||
|
||
int main() {
|
||
int iq;
|
||
cin >> iq;
|
||
if (iq > 140 && iq < 200) {
|
||
cout << "tiancai" << endl;
|
||
} else if (iq >= 200) {
|
||
cout << "输入的IQ不能大于200!" << endl;
|
||
}
|
||
return 0;
|
||
}
|