x=[0,1,2] y=[0,1,2] x=int(input()) y=int(input()) if x==y : print("Drew") elif x - y == -1 or x-y == 2 : print("Won") else: print("lost")