Problem:

Determining whether each of the numbers listed in column A is divisible by the corresponding number in column B.

Solution:

Use the IF and MOD functions in the following formula:
=IF(MOD(A2,B2)=0,\"Divisible\",\"Non-Divisible\")