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