1026: 两点间的距离

Memory Limit:128 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:218 Solved:146

Description

设两个点A、B以及坐标分别为(x1, y1)、(x2, y2 ,则A和B两点之间的距离为:


这个公式可以从勾股定理推导得到。

【题目描述】
输入两点坐标(X1,Y1),(X2,Y2),计算并输出两点间的距离。

Input

分4行输入4个浮点数,分别表示x1,y1,x2,y2

Output

输出距离,结果保留两位小数。

Sample Input Copy

0
0
30
40

Sample Output Copy

50.00