#include using namespace std; int main(void) { cin.tie(0); ios::sync_with_stdio(false); int n; cin >> n; vector prime = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61}; for(int i=0;i= 2 && n%2==0) { cout << "Heihosu!" << '\n'; return 0; } if(n==8 || n==27) { cout << "Ripposu!" << '\n'; return 0; } if(n==6 || n==28) { cout << "Kanzensu!" << '\n'; return 0; } cout << n << '\n'; return 0; }