#include<bits/stdc++.h>
using namespace std;
int n[114][514];
int main(){
int a,b;
for(int i=1;i<=5;i++){
for(int j=1;j<=5;j++){
cin>>n[i][j];
}
}
cin>>a>>b;
for(int i=1;i<=5;i++){
for(int j=1;j<=5;j++){
swap(n[a][j],n[b][j]);
}
}
for(int i=1;i<=5;i++){
for(int j=1;j<=5;j++){
cout<<n[i][j]<<" ";
}
cout<<endl;
}
return 0;
}