a,b = map(int, input().split()) if a == b: print("Drew") if a == 0: if b == 1: print("Won") else: print("Lost") elif a == 1: if b == 2: print("Won") else: print("Lost") else: if b == 0: print("Won") else: print("Lost")