first = input() split_first = first.split() a = int(split_first[0]) b = int(split_first[1]) if a == b: print("Drew") elif a == 0: if b == 1: print("Won") else: print("Lost") elif a == 1: if b == 2: print("Won") else: print("Lost") elif a == 2: if b == 0: print("Won") else: print("Lost")