//#include<stdio.h>
//int top=0;
//int main()
//{
// int i=0;
// char str[50001]={};
// scanf("%s",str);
//
// for(i=0 ; str[i]!=NULL ; i++)
// {
// if(str[i]=='(')
// top++;
// else
// {
// top--;
// if(top<0)
// {
// printf("bad");
// return 0;
// }
// }
// }
//
// if(top>0)
// {
// printf("bad");
// return 0;
// }
// else
// {
// printf("good");
// return 0;
// }
//}
//#include<stdio.h>
//int main()
//{
// int i, n, a=0, b=0;
// char str[100001]={};
// scanf("%s", str);
// for(i=0; str[i]!=NULL; i++)
// {
// if(str[i]=='('&&str[i+1]==')')
// {
// str[i]='|';
// str[i+1]='.';
// }
// }
// for(i=0; str[i]!=NULL; i++)
// {
// if(str[i]=='(')
// {
// a++;
// }
// if(str[i]=='|')
// {
// b+=a;
// }
// if(str[i]==')')
// {
// a--;
// b++;
// }
// }
// printf("%d", b);
//}
#include<stdio.h>
char stack[101]={}, stack1[101]={}, stack2[101]={};
int top=-1, top1=-1;
char pop()
{
return stack[top--];
}
char pop1()
{
return stack1[top1--];
}
int main()
{
int i, n;
scanf("%s %s", stack, stack1);
for(i=0; stack[i]!=NULL; i++)
{
top++;
}
for(i=0; stack1[i]!=NULL; i++)
{
top1++;
}
for(i=0;;i++)
{
stack2[i]=
}
}