N=int(input()) A=input() B=input() for i in range(N): if A[i]=="o" and B[i]=="o": print("Lucky Turtleman") break else: print("Unlucky Turtleman")