Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)
Paste
Pasted as Python by Andrew ( 7 years ago )
from math import*
a = int(input())
b = int(input())
c = int(input())
pp = float((a + b + c)/2)
s = sqrt(pp*(pp - a)*(pp - b)*(pp - c))
print(round(s, 6))
Revise this Paste