program RootsOfRightTriangle;
vara, b, c: integer;
beginwrite('Enter the lengths of the sides of the right triangle (a, b): ');readln(a, b);
c := round(sqrt(aa + bb));
writeln('Hypotenuse of the right triangle: ', c);end.
program RootsOfRightTriangle;
var
a, b, c: integer;
begin
write('Enter the lengths of the sides of the right triangle (a, b): ');
readln(a, b);
c := round(sqrt(aa + bb));
writeln('Hypotenuse of the right triangle: ', c);
end.