# Recieving two coordinate pairs
x1 = int(input("Please provide X1:\t"))
y1 = int(input("Please provide Y1:\t"))
x2 = int(input("Please provide X2:\t"))
y2 = int(input("Please provide Y2:\t"))
## Calculations
# distance formula
xDif = x2 - x1
yDif = y2 - y1
radical = xDif**2 + yDif**2
distance = radical ** (1/2) # meters
## Outputs
if(distance>50):
print("The points are very far apart\\")
elif(distance<5 and distance>0):
print("The points are fairly close\\")
elif(distance==0):
print("These point are the same\\")
#Informing the user of distance between the two coordinate pairs
print("Distance between points:", distance, "meters")