You are given two numbers a and b. Create a function that returns the next number greater than a and b and divisible by b.
divisible_by_b(17, 8) ➞ 24
divisible_by_b(98, 3) ➞ 99
divisible_by_b(14, 11) ➞ 22
a will always be greater than b.