#include #include #include using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); setlocale(LC_ALL, "Japanese"); string s; getline(cin, s); if (s == "0") cout << "Nothing\n"; else if (s == "3.14159265") cout << "pi\n"; else if (s == "1112345678999+X") { string t; cin >> t; wcout << L"九蓮宝燈\nThirteen Orphans\n"; } else if (s == "All your base are belong to us.") cout << "3\n4\n4\n3\n6\n2\n2\n"; else wcout << L"さmpぇ" << "\n"; }