#include<iostream>
#include<conio.h>
usingnamespace std;
void get( int *temp, int n );
void display( constint *temp, int n );
int main()
{
constint N = 10;
int *temp;
temp = newint[N];
get( temp, N );
display( temp, N );
getch();
return ( 0 );
}
void get( int temp[], int n )
{
for( int i = 0; i < n; i++ ) cin >> temp[i];
}
void display( constint temp[], int n )
{
for ( int i = 0; i < n; i++ ) cout << temp[i];
}