#include <iostream>

int main()
{
	char input1 , input2 , temp;
	
	std::cout << "Please enter two letters: ";
	std::cin >> input1 >> input2; //you can also do something like:
	//std::cout << "Please enter the first letter: ";
	//std::cin >> input1;
	//std::cout << "Please enter the second letter: ";
	//std::cin >> input2;
	
	std::cout << "The letters between " << input1 << " and " << input2 << " are:" << std::endl;
	
	//the out put will be weird if you try and start with a lower case and end
	//with an uppercase or vice versa
	//either make them both lower or both upper
	//alterative tell the user to make them both uper or lower.
	for( temp = input1 + 1; temp < input2; ++temp )
	{
		std::cout << temp << ' ';
	}
	return(0);
}