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