local w = { ["0 1"]=true; ["1 2"]=true; ["2 0"]=true } local d = { ["0 0"]=true; ["1 1"]=true; ["2 2"]=true } local s = io.stdin:read("*l") print(w[s] ~= nil and "Won" or d[s] ~= nil and "Drew" or "Lost")