s=list(map(int,input().split())) s.sort() a=sum(s[1:5])*100 a//=4 a=str(a).zfill(5) print(str(int(a[:-2]))+"."+a[-2:])