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