Write a function called "multiple" that determines whether the second integer is a multiple of the first. The function should take two integer arguments and return true if the second integer is a multiple of the first, and false otherwise. Use this function in a program that inputs a series of pairs of integers using a for loop.
Output Example:
Enter two integers: 3 4 is not a multiple of 3
Enter two integers: 12 3 is not a multiple of 12
Enter two integers: 3 12 12 is a multiple of 3