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