In this exercise, use the following <span style="text-decoration-line: none;">variables</span>: i,lo, hi, and result. Assume that lo and hi each are associated with an int and that result refers to 0.
Write a while loop that adds the integers from lo up through hi (inclusive), and associates the sum with result.
Your code should not change the values associated with lo and hi. Also, just use these <span style="text-decoration-line: none;">variables</span>: i,lo, hi, and result.
lo = int(input(''))
hi = int(input(''))
result = 0
while lo <= hi:
result = result + lo
lo = lo + 1
5
9
result
35
Comments
Leave a comment