First solution in Clear category for Multiply (Intro) by wurui1792
def mult_two(a: int, b: int) -> int: return a*b
July 24, 2023