n = int(input()) a = list(map(str,input())) b = list(map(str,input())) che = False for x,y in zip(a,b): if x == y == 'o': che = True break print('Lucky Turtleman') if che else print('Unlucky Turtleman')