No Idea!

  • + 0 comments

    Enter your code here. Read input from STDIN. Print output to STDOUT

    n,m = map(int,input().split()) array = list(map(int,input().split())) A = set(map(int,input().split())) B = set(map(int,input().split())) happiness = 0 for i in array: if i in A: happiness += 1 if i in B: happiness -= 1 else: happiness = happiness print(happiness)