编辑代码

a=int(input("请输入三角形的第一条边长:"))
b=int(input("请输入三角形的第二条边长:"))
c=int(input("请输入三角形的第三条边长:"))
if a+b > c and a+c > b and b+c > a:
     print("这三条边长能构成三角形")
else:
     print("这三条边长不能构成三角形")