#include<iostream>
using namespace std;
const int N=30;
string str1,str2;
void backOrders(string pre,string in)
{
if(pre.size())
{
char root=pre[0];
int k=in.find(root);
backOrders(pre.substr(1,k),in.substr(0,k));
backOrders(pre.substr(k+1),in.substr(k+1));
cout<<root;
}
}
int main()
{
while(cin>>str1>>str2)
{
backOrders(str1,str2);
cout<<endl;
}
return 0;
}