#include <iostream>
using namespace std;

int main() {
	// your code goes here
	std::string fileName;
    cout << "Please enter the directory containing the MP3 files you wish to have organised. " << endl;
	getline( cin, fileName);
	cout << "\"" + fileName + "\"";
	return 0;
}