from math import sqrt
x1, y1, x2, y2 = map(int, input().split())
print(sqrt((x2-x1)**2+(y2-y1)**2))
В случае x1=5;y1=2x2=10;y2=12 ответ будет 11.180339887498949
from math import sqrt
x1, y1, x2, y2 = map(int, input().split())
print(sqrt((x2-x1)**2+(y2-y1)**2))
В случае x1=5;y1=2x2=10;y2=12 ответ будет 11.180339887498949