N, K = input().split() if (N == K): print("Drew") elif ((N == "1") and (K == "2") or (N == "2") and (K == "3") or (N == "3") and (K == "1")): print("Won") else: print("Lost")