#!/usr/bin/env ruby

require 'zipf'

a = []
while line = STDIN.gets
  a << line.to_f
end

a.sort!

puts a[a.size/2]