print("欢迎使用腾讯充值业务,请输入充值金额:")
money = int(input("请输入你要充值的金额:"))
money_str = str(money)
print("恭喜你充值成功,你充值的金额为:" +money_str+"元")

print('''
*************
* *
* *
* @ @ *
* *
* @ *
* *
* *
* *
****************
''')

fatherh = float(input("请输入父亲的身高:"))
motherh = float(input("请输入母亲的身高:"))
sonh = ((fatherh + motherh)*0.54)
print("预测儿子身高为:" +str(sonh))
step = int(input("请输入你今天走的步数"))
caroli = step * 28
print("今天共消耗卡路里:" +str(caroli)+"即" + str(caroli/1000)+"千卡")

step = int(input("请输入你今天走的步数"))
caroli = step * 28
print("今天共消耗卡路里:" +str(caroli)+"即" + str(caroli/1000)+"千卡")

