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