Write a program which reads 3 integers, prints them, and tests them, using
nested conditionals, as indicated by the following program sketch.
if (num1 is greater than 1)
if (num2 is less than 2)
print the letter A
else
print the letter B
else
if (num3 is equal to 3)
print the letter C
else
print the letter D
Write the (compound) conditions that lead to each of the four possibles outputs.
Run the program several times, carefully choosing values for the variables
num1, num2,
and num3 that will result in each output value (A, B, C, D) appearing at least once.
For each of the four possible outputs,
give the values you chose for num1, num2, and num3.