First solution in Clear category for Multiply (Intro) by amsilva3
def mult_two(a: int, b: int) -> int: n = int(a)*(b) return n
Sept. 6, 2022