Janitor Troubles

This commit is contained in:
2023-07-03 19:54:00 +02:00
parent 9471cd2034
commit df0345596a

4
janitortroubles.py Normal file
View File

@@ -0,0 +1,4 @@
a, b, c, d = map(int, input().split())
s = (a + b + c + d) / 2
k = ((s - a) * (s - b) * (s - c) * (s - d)) ** 0.5
print(k)