# include # include using namespace atcoder; using namespace std; # define rep(i,n) for (int i = 0; i < (n); i++) const int inf = 2100000000; const long long INF = 2167167167167167167; using ll = long long; using P = pair; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); string s = "Short"; int n; cin >> n; rep(i,n) cout << s[i]; cout << endl; return 0; }