#include using namespace std; #ifdef LOCAL #include "settings/debug.cpp" #define _GLIBCXX_DEBUG #else #define Debug(...) void(0) #endif #define rep(i, n) for (int i = 0; i < (n); ++i) using ll = long long; using ull = unsigned long long; int main() { string s; cin >> s; if (s.starts_with("0")) { cout << "Nothing" << endl; } else if (s.starts_with("3")) { cout << "pi" << endl; } else if (s.starts_with("1")) { cout << "九蓮宝燈\nThirteen Orphans" << endl; } else if (s.starts_with("A")) { cout << "3\n4\n4\n3\n6\n2\n2" << endl; } else { cout << "さmpぇ" << endl; } return 0; }