game = gets.chomp puts ['0 1', '1 2', '2 0'].include?(game) ? 'Won' : ['0 0', '1 1', '2 2'].include?(game) ? 'Drew' : 'Lost'