#include<iostream> using namespace std; int main(){ int x; cin>>x; if(x>30){ cout<<"hot"<<endl; } else{ cout<<"cold"<<endl; } return 0; }