//This program creates a text file of the name, which your enter from keyboard!
#include<iostream>
#include<fstream>
usingnamespace std;
int main()
{
ofstream out;
char out_file_name[16];//16 is your file's name length (in characters)
cin>>out_file_name;
out.open(out_file_name);
out.close();
return 0;
}