m,y=map(int,input().split()) if m==y: print("Drew") else: if m==0 and y==1 or m==1 and y==2 or m==2 and y==0: print("Won") else: print("Lost")