Python:
a, b, c = int(input()), int(input()), int(input())
if a == b or a == c or b == c:
print("Равнобедренный")
else:
print("Неравнобедренный")
вроде так
Python:
a, b, c = int(input()), int(input()), int(input())
if a == b or a == c or b == c:
print("Равнобедренный")
else:
print("Неравнобедренный")
вроде так