#include <bits/stdc++.h>
using namespace std;
int main()
{
ios::sync_with_stdio(0);
cin.tie(0);
string a,b;
cin>>a>>b;
cout<<"|"<<a;
for(int i=0; i<(10-a.length()); i++)
{
cout<<" ";
}
cout<<"|";
for(int i=0; i<(10-b.length()); i++)
{
cout<<" ";
}
cout<<b<<"|"<<endl;
}