gets a = gets.chomp.split(" ").map(&:to_i) t = Array.new(7,0) a.each do |d| t[d] += 1 end max = t.max p 6 - t.reverse.index(max)