a = gets.to_i b = gets.to_i if a == b then puts "Drew" elsif (a==0 && b==2) || (a==1 && b==0) || (a==2 && b==1) then puts "Won" else puts "Lost" end