TOPIC
Compilation error 25% in Python3
Thiago Sales Freire Luz asked 10 months ago
from math import sqrt
x1, x2 = [float(i) for i in input().split()] y1, y2 = [float(i) for i in input().split()]
distance = sqrt((x2-x1)2 + (y2-y1)2)
print("{:.4f}".format(distance))