hm-temp
#include <iostream>
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
int temperature;
cin >> temperature;
if (temperature <= -20)
{
cout << "Очень холодно";
}
else if (temperature <= -5)
{
cout << "Холодно";
}
else if (temperature <= 10)
{
cout << "Прохладно";
}
else if (temperature <= 20)
{
cout << "Тепло";
}
}
INFO