import java.util.*; public class BOJ1919 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String str1, str2; int[] check_arr = new int[1000]; // str2의 중복 확인용 배열, 자동으로 0으로 초기화됨 int cnt = 0; str1 = sc.nextLine(); str2 = sc.nextLine(); for(int i=0;i