#include<bits/stdc++.h> using namespace std; int a[500][500],b[500][400],m,n,c[5200][501]; double x,y; int main() { cin>>n>>m; for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) cin>>a[i][j]; } for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) cin>>b[i][j]; } for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { c[i][j]=a[i][j]+b[i][j]; } }for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) { cout<<c[i][j]; } } return 0; }