a,b = map(int,input().split()) if [a,b] in [[0,1],[1,2],[2,0]] : print("Won") elif [a,b] in [[1,0],[2,1],[0,2]] : print("Lost") else : print("Drew")