Set .add()

  • + 0 comments
    N=int(input())
    s=set()
    for i in range (N):
            s.add(input())
    print(len(s))