// No.1841 Long Long package main import ( "fmt" "strings" ) func main() { var n int fmt.Scan(&n) fmt.Println(strings.Repeat("Long", n)) }