me , you = map(int,input().split()) if me == you: print("Drew") elif (me, you) in [(0,1),(1,2),(2,0)]: print("Won") elif (me, you) in [(0,2),(1,0),(2,1)]: print("Lost")