avg 110 B

123456
  1. #!/bin/python2
  2. import sys
  3. nums = [int(l) for l in sys.stdin.readlines()]
  4. print sum(nums) / float(len(nums))