#include <iostream>
using namespace std;
int m;
int copy(int a[], int b[], int size)
{
for(int i = 0; i < size; i++)
b[i] = a[i];
for(int i = 0; i < m; i++)
cout << b[i] << " ";
}
int main()
{
int a[100], b[100], size;
int n;
cin >> n >> m >> size;
for(int i = 0; i < n; i++) cin >> a[i];
for(int i = 0; i < m; i++) cin >> b[i];
copy(a, b, size);
return 0;
}