Function with type annotation



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

print("ok")
first = "19"
second = 23
print(add(first, second))