CodechefSep 22, 2025

Is it hot or cold

Hazrat Ali

Codechef

Chef considers the climate HOT if the temperature is above 20, otherwise he considers it COLD. You are given the temperature C, find whether the climate is HOT or COLD.

Input Format

  • The first line of input will contain a single integer T, denoting the number of test cases.
  • The first and only line of each test case contains a single integer, the temperature C.

Output Format

For each test case, print on a new line whether the climate is HOT or COLD.

You may print each character of the string in either uppercase or lowercase (for example, the strings hOthotHot, and HOT will all be treated as identical).

Constraints

  • 1≤T≤50
  • 0≤C≤40

Sample 1:

Input
2
21
16
Output
 
HOT
COLD

Solution

#include <iostream>
using namespace std;

int main() {
    int t;
    cin >> t;
    while (t--) {
        int n;
        cin >> n;
        if (n > 20)
            cout << "HOT" << endl;
        else
            cout << "COLD" << endl;
    }
    return 0;
}





Comments