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