Write a program that (1) reads a sequence of integers, (2) prints the integers in the same order on separate lines, and then (3) prints the integers again. You may assume that each integer is between -100 and 100. You may assume that there are at most 10000 integers. Your program must stop reading integers when it reads something other than an integer or encounters the end of input. For example, if the user types 7 -5 99$ 8 your program will display 7 -5 99 7 -5 99 on six lines.