a, b = map(int, input().split()) #0はグー、1はチョキ、2はパー if a == b : print("Drew") elif a == (b - 1) % 3 : print("Won") else : print("Lost")