def addition(a: float, b: float) -> str: # this does not seem right! why str? return a + b def subtraction(a: float, b: float) -> float: return a - b