4 lines
59 B
Python
4 lines
59 B
Python
|
def addition(a: float, b: float) -> str:
|
||
|
return a + b
|
||
|
|