import sys S = list(map(int, input().split())) S.sort() print('{:.2f}'.format(sum(S[1:-1]) / 4))