Лазарев Артур Дмитриевич 514 TriangleSquare 6936
Утнасун Муниев, 514 группа TriangleSquare 6873
t1from decimal import Decimal, getcontextt1from decimal import Decimal, getcontext
2getcontext().prec = 2002getcontext().prec = 200
3x1, y1, x2, y2, x3, y3 = map(Decimal, input().split(','))3x1, y1, x2, y2, x3, y3 = map(Decimal, input().split(','))
4a = Decimal(x1 * (y2 - y3))4a = Decimal(x1 * (y2 - y3))
5b = Decimal(x2 * (y3 - y1))5b = Decimal(x2 * (y3 - y1))
6c = Decimal(x3 * (y1 - y2))6c = Decimal(x3 * (y1 - y2))
7area = abs((a + b + c) / 2)7area = abs((a + b + c) / 2)
8print(area)8print(area)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op