[READ-ONLY] Mirror of https://github.com/shuuji3/competitive-programming. 馃洬 Codes submitted to competitive programming platforms
aizu-online-jadge aoj atcoder hackerrank leetcode
0

Configure Feed

Select the types of activity you want to include in your feed.

1import math 2x1, y1, x2, y2 = map(float, input().split()) 3print(math.sqrt((x2 - x1)**2 + (y2 -y1)**2))