#include <iostream>
#include <string>

int main() {
	std::string fileName;
	std::cout << "=============================================================\n"
	     << "|        Welcome to the Automatic Maze Path Finder!         |\n"
	     << "=============================================================\n"
	     << "\nEnter the name of the Maze configuration file: ";
	std::getline(std::cin, fileName);
	std::cout << std::endl <<"fileName contains " << fileName << std::endl;
}