N,K = map(int,input().split()) if N == 0 : if K == 1 : print("Won") elif K == 0 : print("Drew") else : print("Lost") elif N == 1 : if K == 2 : print("Won") elif K == 1 : print("Drew") else : print("Lost") else : if K == 0 : print("Won") elif K == 2 : print("Drew") else : print("Lost")