get the next multiple of a given number; code example
Example: get next multiple of a number
# n integer to chech
# a = multipole
# find the near a-multipole to n
n + (a - n % a)
# n integer to chech
# a = multipole
# find the near a-multipole to n
n + (a - n % a)