#include 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; }