import math N = int(input()) x = list(map(int,input().split())) A = sum(x)/N for i in x: D = 50 - (A-i)/2 print(math.floor(D))