4 lines
108 B
Python
4 lines
108 B
Python
def addition(a: float, b: float) -> float | int:
|
|
"""Returns the sum of two numbers."""
|
|
return a + b
|