Advertisement
UraniumGames

task

Jan 28th, 2024
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.41 KB | None | 0 0
  1. _a = int(input("Введите число: "))
  2. _b = int(input("Введите число: "))
  3. _c = int(input("Введите число: "))
  4.  
  5. # Проверка условий существования треугольника
  6. if (_a + _b > _c) and (_b + _c > _a) and (_c + _a > _b):
  7.     print("Треугольник существует.")
  8. else:
  9.     print("Треугольник не существует.")
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement