#include <iostream>

int main() {
	int N;
	scanf("%d",&N);
	while(N){
		printf("Long");
		N--;
	}
	printf("\n");
}