Check if three sides can form a valid triangle.
Implement this function:
def is_valid_triangle(a: int, b: int, c: int) -> bool:
Write the function only — the arguments are read for you and the return value is printed automatically.
Arguments arrive as one Python literal per line, in this order: a, b, c.
Input
3
4
5
Output
True