import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

public class Main{
  public static void main(String[] args) throws NumberFormatException, IOException{	  
	  BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
	  String str1=br.readLine();//不能输出的字符
	  String str2=br.readLine();//本应该输出的字符串
	  br.close();
//	  如果不能输出的字符里包含了'+',那么大写字母都不能输出
	  if(str1.indexOf('+')!=-1) {
		  for(int i=0;i<str2.length();i++) {
			  char ch=str2.charAt(i);
//			  如果对应的字符包含在str1里或者对应字符是大写字母,则不输出对应字符
			  if(str1.indexOf(ch)>=0||(ch>='A'&&ch<='Z')) {}
			  else {
//				  如果ch是小写字母的话需要转换为大写字母再比较,如果大写字符不在str1中就可以输出
				  char CH=(char)(ch-32);
				  if(str1.indexOf(CH)==-1) {
					  System.out.print(ch);
				  }
			  }
		  }
	  }
//	  如果不包含'+',那么只不能输出str1有的字符
	  else {
		  for(int i=0;i<str2.length();i++) {
			  char ch=str2.charAt(i);
			  if(str1.indexOf(ch)>=0) {}
			  else {
				  char CH=(char)(ch-32);
				  if(str1.indexOf(CH)==-1) {
					  System.out.print(ch);
				  }
			  }
		  }
	  }
  }
}