N = int(input()) A = input() B = input() for a, b in zip(A, B): if a=="o" and b=="o": print("Lucky Turtleman") exit() print("Unlucky Turtleman")