xA=float(input()) yA=float(input()) xB=float(input()) yB=float(input()) xC=float(input()) yC=float(input()) a=xB-xA b=yB-yA c=xC-xA d=yC-yA if a*d==c*b: print("Les points A, B, C sont alignés") else: print("Les points A, B, C ne sont pas alignés")