#include <iostream> //designed by lu 202509 using namespace std; int main(){ int temp; cin >> temp; if( temp>30 ) { cout<<"hot"; } else { cout<<"cold"; } return 0; }