#include using namespace std; int main() { string s; while (getline(cin, s)) { if (s.empty())break; if (s == "0")cout << "Nothing" << endl; if (s == "3.14159265")cout << "pi" << endl; if (s == "1112345678999+X")cout << "九蓮宝燈" << endl; if (s == "19m19p19s東南西北白發中+Y")cout << "Thirteen Orphans" << endl; if (s == "All your base are belong to us.") { cout << 3 << endl << 4 << endl << 4 << endl << 3 << endl << 6 << endl << 2 << endl << 2 << endl; } if (s == "くぁwせdrftgyふじこlp")cout << "さmpぇ" << endl; } return 0; }