这是一段Python代码,判断能否组成三角形def is_triangle(a, b, c): if (a,b,c>0): if ((a+b)>c)and((a+c)>b)and((b+c)>a): return 1 else: return 0 else: return -1 a=int(input()) b=int(input()) c=int(input()) is_triangle(a,b,c)这个代码运行时老是反回不了-1帮忙看一下,谢谢😜