(a, b) – Координаты слона, (c, d) — координаты другой фигуры.1234Со о лa=int(input())b=int(input()C=int(input())d=int(input()ifprint("YES")else :| print("No")7not(a+b==c+d) or notla-h==d-d)
(a, b) – Координаты слона, (c, d) — координаты другой фигуры.1234Со о лa=int(input())b=int(input()C=int(input())d=int(input()ifprint("YES")else :| print("No")7not(a+b==c+d) or notla-h==d-d)
begin
writeln('Введите строны первого треугольника: ');
read(a1, b1, c1);
writeln('Введите стороны второго треугольника: ');
read(a2, b2, c2);
p1 := (a1 + b1 + c1) / 2;
p2 := (a2 + b2 + c2) / 2;
s1 := sqrt(p1 * (p1 - a1) * (p1 - b1) * (p1 - c1));
s2 := sqrt(p2 * (p2 - a2) * (p2 - b2) * (p2 - c2));
if (s1 + 1e-3 > s2) and (s1 < s2 + 1e-3) then writeln('Равновеликие')
else writeln('Неравновеликие');
end.