a,b,c,d,e,f=input().split() x=0 if a==c or c==a: if d==f or e==f: x+=1 if a==f or b==f: if d==c or e==c: x+=1 if x>0: print("NO") else: print("YES")