How add type annotation?



examples/python-types-at-pyweb-2025-01/type_annotation.py
def add(x: int, y: int) -> int:
    return x + y


def multiply(x, y):
    res: int = x * y
    return res


a: int = 23

z: int = add(a, 19)

result = multiply(a, 19)