Description of the Problem
#1 Write a program that reads in two integers and determines and prints whether the first is a multiple of the second. [Hint: Use the modulus operator.] Sample Output Enter two integers: 22 8 22 is not a multiple of 8 Description of the Problem
#2 Write a program, which converts Celsius temperature to Fahrenheit. The user is supposed to input Celsius temperature as a real value and your program should convert it to Fahrenheit as a real number. Use the equation: F = 9.0/5.0 * C + 32.0 for conversion. Sample Output Enter temperature in Celsius: 30.5 The temperature in Fahrenheit is 86.9