#include <bits/stdc++.h> using namespace std; int main() { char c; cin >> c; if (c == 'H') { cout << "Hello,my master!"; cout << "I'm Xiaoluo."; } else if (c == 'I') { cout << "I'm Xiaoluo."; } else if (c == 'S') { cout << "Two tigers Two tigers,running so fast..."; } else if (c == 'B' || c == 'Q') { cout << "Bye bye!"; } else { cout << "Sorry..."; } }