如题🙏西安的道路可以看作是x轴或y轴垂直的直线出发点(a,b) 目的地(c,d)
import matha,b,c,d=map(int,input().split())x=abs(c-a)y=abs(d-b)z=x+yprint(z)
d = sqrt((c-a)**2 + (d-b)**2)