n=int(input()) l=list(map(int,input().split())) v=0 i=0 while i < n*2 : j=i+1 while j < n*2 : if l[i] == l[j]: v+=j-i break j+=1 i+=1 print(v)