def egalitevect(x1,y1,x2,y2):
    if  x1==x2 and y1==y2:
        print("les vecteurs sont égaux")
    else:
        print("les vecteurs ne sont pas égaux")

x1=float(input("x1=?"))
y1=float(input("y1=?"))
x2=float(input("x2=?"))
y2=float(input("y2=?"))

egalitevect(x1,y1,x2,y2)