n=int(input()) s=set() for i in range(n): a,b=map(int, input().split()) s.add((a,b)) print(s) if len(s)