int main()
{
char name[20], phone[20];
cout<< "Enter your name: ";
cin>> name;
cout<< "Enter you phone number: ";
cin>> phone;
ofstream file_w ("test.txt");
file_w << name <<endl
<< phone<<endl;
cout << "Process complete";
file_w.close();
return 0;
}