diff --git "a/Module2/practice/\360\237\224\265easy/[easy]05_task_if.md" "b/Module2/practice/\360\237\224\265easy/[easy]05_task_if.md" index 4992c93..9c44893 100644 --- "a/Module2/practice/\360\237\224\265easy/[easy]05_task_if.md" +++ "b/Module2/practice/\360\237\224\265easy/[easy]05_task_if.md" @@ -16,7 +16,15 @@ ### Решение задачи ```python -# TODO: you code here... +a = int(input()) +b = int(input()) +c = int(input()) +if a + b <= c and b + c > a and c + b > a: + print("Не существует") +elif a == b or b == c or c == a: + print("Равнобедренный") +elif a != b or b != c or c !=a: + print("Не равнобедренный") ``` ---