#include "CS35lib.h"

int main()
{
	int low, high, counter;
	cout<<"Enter 2 int in ascending order: ";
	cin>>low;
	cin>>high;
	for (counter = low; counter < high + 1; counter++)
	{
		cout<< counter<<" ";
	}
	cout<< endl;
	return 0 ;
	
} 
