n=int(input()) # 1안 print("long "*(int(n/4)),end="") print("int") #2안 # for _ in range(int(n/4)): # print("long",end=" ") # print("int")