def med array sorted = array.sort len = sorted.length (sorted[(len - 1) / 2] + sorted[len / 2]) / 2.0 end gets puts med(gets.split.map(&:to_i))