n = int(input()) a = input() b = input() for i in range(n): if a[i] == b[i] == "o": print("Lucky Turtleman") break else: print("Unlucky Turtleman")