hi
def add(a: float, b: float): return a + b result = add(5, 3) print(f"result of 5 + 3 is {result}")
OUTPUT: result of 5 + 3 is 8
what