% Define predicate for multiplication calculator multiply_table(X, Y, Result) :- between(1, 10, X), between(1, 10, Y), Result is X * Y.