#include <iostream> using namespace std; int main(){ int a; cin>>a; bool b; b=(30<=a); if(b==true){ cout<<"hot"; } if(b==false){ cout<<"cold"; } }