a,b = gets.split.map(&:to_i) if a == b then puts "Drew" elsif (a==0 && b==2) or (a==1 && b==0) or (a==2 && b==1) then puts "Won" else puts "Lost" end