Run ID:135421

提交时间:2025-11-03 17:17:54

using namespace std; int main() { int temperature; cin >> temperature; if (temperature > 30) { cout << "hot" << endl; } else { cout << "cold"; }