Write a Python program that calculates the squared geometric…
Write a Python program that calculates the squared geometric distance between two points based on user input. The user should enter the coordinates of the two points, labeled as: x1, x2, y1 and y2 The squared distance should be computed using the formula: distance = (x1-x2)2 + (y2 – y1)2