#include using namespace std; using ll = long long; void solve() { int n; cin >> n; const string s{"Short"}; cout << s.substr(0, n) << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int T = 1; while (T--) { solve(); } return 0; }