Check if three sides form a right triangle where perpendicular sides are even.
Implement this function:
def is_right_triangle_with_even_sides(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
6
8
10
Output
True