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