This repository has been archived on 2025-12-15. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
2024-09-20 14:17:13 +03:00

13 lines
308 B
Python

def triangle(a, b, c):
if (a+b) > c and (a+c) > b and (b+c) > a:
return True
else:
return False
if __name__ == "__main__":
print(triangle(3, 5, 4)) # True
print(triangle(-1, 2, 3)) # False
print(triangle(5, 9, 14)) # False
print(triangle(30, 12, 29)) # True