División múltiple

Comienza con a y duplícala b veces. Devuelve True si el valor final es divisible por c y False en caso contrario.

Ejemplos

abcmath(42, 5, 10) ➞ False
# 42+42 = 84,84+84 = 168,168+168 = 336,336+336 = 672, 672+672 = 1344
# 1344 no es divisible por 10

abcmath(5, 2, 1) ➞ True

abcmath(1, 2, 3) ➞ False