// Include custom header files
#include "EncryptableString.h"

int main() { // Start main function

	string toBeEncrypted; // String variable to hold user input

	// Prompt for user input
	cout << "This is an Encryption program. Enter a string to encrypt: ";
	cin >> toBeEncrypted;

	// Initialize object of type EncryptableString with user input
	EncryptableString esobj(toBeEncrypted);

	// Call member function encrypt() of esobj
	esobj.encrypt();

	// Output encrypted string
	cout << "Here is the encrypted string: " << esobj << endl;

	return 0; // Return end code

}
