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