hand_me, hand_opponent = gets.split(nil).map(&:to_i) if hand_me - hand_opponent == 0 then puts "Drew" elsif hand_me == 0 && hand_opponent == 1 || hand_me == 1 && hand_opponent == 2 || hand_me == 2 && hand_opponent == 0 then puts "Won" else puts "Lost" end