# 入力された値を文字列で受け取る input = gets.chomp # 入力された値を文字列→数値に変換 count = input.to_i count.times do print "Long" end print "\n"