Dan
2012-07-28 18:51:17 UTC
#Word Counter
#Practice using python
#Daniel Goldring 7/28/12
begin = raw_input (int('Enter the number you would like to begin with.'))
end = raw_input (int('Enter the number you would like to end with.'))
count = raw_input (int('Enter how many numbers you would like me to count at one time.'))
while begin:
begin + count
print begin
if begin == end:
break
print 'Welcome to word counter!'
print 'This program will count numbers for you instead of having to do it yourself.'