输入三个数

x1 = list(input().split())
#三数据处理
length = float(x1[0])
weight = float(x1[1])
height = float(x1[2])
#计算公式
x = float(height(length + weight))/2
print("%.
f"%(3,x))