def hensa(x): d=50-(A-x)/2 return int(d) n=int(input()) a=list(map(int,input().split())) A=sum(a)/n for s in a: print(hensa(s))