#include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); char c; cin >> c; if (c == '0') { cout << "Nothing\n"; } else if (c == '3') { cout << "pi\n"; } else if (c == '1') { cout << "九蓮宝燈\nThirteen Orphans\n"; } else if (c == 'A') { cout << "3\n4\n4\n3\n6\n2\n2\n"; } else { cout << "さmpぇ\n"; } }