Загрузка данных


def multiply(a, b):
    c = a * b
    return(c)
multiply(3, 5)