#include using namespace std; int main() { string S = "Long"; int N; cin >> N; string T; for (int i = 0; i < N; i++) { T += S; } cout << T << endl; }