first = input().split() A = int(first[0]) B = int(first[1]) if A == B: print("Drew") else: if A == 0 and B == 1: print("Won") elif A ==0 and B == 2: print("Lost") elif A ==1 and B == 0: print("Lost") elif A ==1 and B == 2: print("Won") elif A ==2 and B == 0: print("Won") elif A ==2 and B == 1: print("Lost")