Go through this drill step by step. Do not try to speed up by skipping steps. Test
each step by entering at least three pairs of values - more values would be better.
1. Write a program that consists of a while-loop that (each time around the
loop) reads in two ints and then prints them. Exit the program when a
terminating 'I' is entered.
When i try to terminate the loop with "I" or any other value instead of int, program just ends and those values that should be printed on the screen cout << num1, num2; do not appear. Why is that?