include[HTML_REMOVED]
using namespace std;
const int N=1000;
void print(int a[], int size)
{
for(int i=0;i<size;i++)
{
cout << a[i] << ” “;
}
}
int main()
{
int n,size;
int a[N];
cin >> n >> size;
for(int i=0;i[HTML_REMOVED]> a[i];
}
print(a,size);
return 0;
}