3 lines
75 B
Python
3 lines
75 B
Python
|
def add_three_numbers(x: int, y: int, z: int) -> int:
|
||
|
return x + y + z
|