description 백준 1919번 �애너그램 - 1919 // Some code a = list(input()) b = list(input()) a1, b1 = a[:], b[:] list1 = [x for x in a if not x in b1 or b1.remove(x)] list2 = [x for x in b if not x in a1 or a1.remove(x)] print(len(list1) + len(list2))