I, Y = map(int, input().split()) a = (I - Y) % 3 if a == 0: print("Drew") if a == 1: print("Lost") if a == 2: print("Won")