me, you = (int(i) for i in input().split()) match = me - you if match == 0: print("Drew") elif match == 2 or match == -1: print("Won") else: print("Lost")