int main()
{
int n = 0;
cin >> n;
char c[1024] = {0};
for(int i = 0; i < n; i++)
cin >> c[i];
}
cout << c;
system("pause");
return 0;