jibun = gets.chomp.to_i aite = gets.chomp.to_i if jibun == aite puts "Drew" return end if jibun == 0 if aite == 1 puts "Won" elsif aite == 2 puts "Lost" end end if jibun == 1 if aite == 2 puts "Won" elsif aite == 0 puts "Lost" end end if jibun == 2 if aite == 0 puts "Won" elsif aite == 1 puts "Lost" end end