#include using namespace std; int main(){ std::ios::sync_with_stdio(false); std::cin.tie(nullptr); int N; cin >> N; string S = "Short"; cout << S.substr(0, N) << "\n"; }