HomeAbout

# without typing def multiply(x, y): return x*y # with typing def multiply(x: int, y: int) -> int: return x*y
AboutContact