Set .union() Operation

  • + 0 comments

    n=int(input()) a=set(input().split()) n1=int(input()) a1=set(input().split()) print(len(a | a1))