#define _USE_MATH_DEFINES #include using namespace std; const vector pr = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29, 31, 37, 41, 43, 47, 53, 59, 61}; const vector sq = {4, 9, 16, 25, 36, 49, 64}; const vector cb = {8, 27, 64}; const vector pf = {6, 28}; signed main() { ios::sync_with_stdio(false); cin.tie(0); int n; cin >> n; if (count(pr.begin(), pr.end(), n)) { cout << "Sosu!\n"; } else if (count(sq.begin(), sq.end(), n)) { cout << "Heihosu!\n"; } else if (count(cb.begin(), cb.end(), n)) { cout << "Ripposu!\n"; } else if (count(pf.begin(), pf.end(), n)) { cout << "Kanzensu!\n"; } else { cout << n << '\n'; } return 0; }