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