You are on page 1of 1

print "this program count for you"

x1 = input("enter the starting value")


x2 = input("enter the ending value")
x3 = input("enter the increment")
while x1 <= x2 :
print x1
x1 = x1 + x3

You might also like