#include "iostream"
#include "stdafx.h"
using namespace std;
int main()
{
cout << " main name: Andrew\n";
cout << "\nmain age: 21\t";
cout << "\n***The End***\n";
system("pause");
return 0;
}