<em># Recieving two coordinate pairs</em>
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"))
<em>
</em>
<em>## Calculations
</em>
<em>
</em>
<em>
</em>
<em># distance formula</em>
xDif = x2 - x1
yDif = y2 - y1
radical = xDif**2 + yDif**2
distance = radical ** (1/2) # meters
<em>## Outputs</em>
if(distance>50):
print("The points are very far apart\n")
elif(distance<5 and distance>0):
print("The points are fairly close\n")
elif(distance==0):
print("These point are the same\n")
<em>#Informing the user of distance between the two coordinate pairs</em>
print("Distance between points:", distance, "meters")