import math
x = 0
y = 0
Sum = 0
x = input("Please enter start number : ")
y = input("Please enter amount of number : ")
for i in range(x, y+1, 1):
Sum = Sum + i
print("Totol sum of positive number from " + x + " to " + y + " is " + Sum + ".")
import math
x = 0
y = 0
Sum = 0
x = input("Please enter start number : ")
y = input("Please enter amount of number : ")
for i in range(x, y+1, 1):
Sum = Sum + i
print("Totol sum of positive number from " + x + " to " + y + " is " + Sum + ".")