import timeit def multiplication(x,y): if y < 2: return x else: return x+multiplication(x,y-1) print(multiplication(6,7))