In Python
Write a program that first asks user to enter a lower limit integer and an upper limit integer respectively. Then, use the the for loop and range function to iterate over all numbers between the
lower limit and the upper limit (inclusive), and calculate their sum.
Note that calculation of running total must be used.
Enter the Iower Iimit: 1 Enter the upper Iimit: 5 The sum is 15