a=input("请输入三角形的第一个边") b=input("请输入三角形的第二个边") c=input("请输入三角形的第三个边") x=float(a) y=float(b) z=float(c) print(x+y+z)