Var a, b, i, c:Integer ;
Begin
Write('a=') ;read(a) ;writeln;
Write('b=') ;read(b) ;writeln;
Write('c=') ;read(c) ;writeln;
If (a<c+b) and(b<a+c) and(c<b+a) then begin
I:=1;
Write(' Треугольник существует ') ;
End Else begin
I:=0;
Write(' Треугольник не существует ') ;
End;
If i=1 then begin
If (a>b) and(a>c) then
If sqr(a) =sqr(b) +sqr(c) then write(' Треуголинк прямоугольный')
Else write(' Треугольник не прямоугольный ') ;
If (b>a) and(b>c) then
If sqr(b) =sqr(a) +sqr(c) then write(' Треуголинк прямоугольный')
If (c>a) and(c>b) then
If sqr(c) =sqr(b) +sqr(a) then write(' Треуголинк прямоугольный')
End.
Var a, b, i, c:Integer ;
Begin
Write('a=') ;read(a) ;writeln;
Write('b=') ;read(b) ;writeln;
Write('c=') ;read(c) ;writeln;
If (a<c+b) and(b<a+c) and(c<b+a) then begin
I:=1;
Write(' Треугольник существует ') ;
End Else begin
I:=0;
Write(' Треугольник не существует ') ;
End;
If i=1 then begin
If (a>b) and(a>c) then
If sqr(a) =sqr(b) +sqr(c) then write(' Треуголинк прямоугольный')
Else write(' Треугольник не прямоугольный ') ;
If (b>a) and(b>c) then
If sqr(b) =sqr(a) +sqr(c) then write(' Треуголинк прямоугольный')
Else write(' Треугольник не прямоугольный ') ;
If (c>a) and(c>b) then
If sqr(c) =sqr(b) +sqr(a) then write(' Треуголинк прямоугольный')
Else write(' Треугольник не прямоугольный ') ;
End;
End.