Program Example17; { Program to demonstrate the hypot function. } Uses math; begin Writeln(hypot(3,4)); // should be 5 end.