Problem Statement
Write a C program that asks the user to input 2 integer numbers, then prints all the integers between and including these 2 numbers. You can assume that the first number is less than or equal to the second number.
Your program should read two integers from standard input and output all integers in the range [first_number, second_number] inclusive, each on a new line.