算身高
print("请输入父亲的身高:")
father_height=input()
print("请输入母亲的身高:")
mother_height=input()
son_height=(float(father_height)+float(mother_height))*0.54
print("预测儿子身高为:"+ str(son_height))
print("请输入父亲的身高:")
father_height=input()
print("请输入母亲的身高:")
mother_height=input()
son_height=(float(father_height)+float(mother_height))*0.54
print("预测儿子身高为:"+ str(son_height))