a = int(input())
b = int(input())
c = int(input())
Is_real = a+b > c and a+c > b and b+c > a
if Is_real:
print('Треугольник существует')
else: print('Такого треугольника не может быть')
Объяснение:
a = int(input())
b = int(input())
c = int(input())
Is_real = a+b > c and a+c > b and b+c > a
if Is_real:
print('Треугольник существует')
else: print('Такого треугольника не может быть')
Объяснение: