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