q=input().split() a=q[0] b=q[1] c=q[2] a=int(a) b=int(b) c=int(c) r="{:.2f}".format((a+b+c)/3) print(r)