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