This assignment is copied from Deitel & Deitel's textbook.
1. Write a program that reads in two integers and determines and prints if
the first is a multiple of the second.
Hint: use the modulus operator. (%)
If you store
user's two numbers in num1 &
num2 boxes, find the remainder when num1
divide by num2.
Also, store the
remainder in R box. If
R box is zero, num1 is multiple of num2, otherwise, it is not.


2. After your program work well, you have to use a block comment to
write your name and the purpose of this program.
3. Send your source file as an attachment to extrapo66@yahoo.com.