ex4.pp 134 B

12345678910
  1. Program Example4;
  2. { Program to demonstrate the arsinh function. }
  3. Uses math;
  4. begin
  5. Writeln(arsinh(0));
  6. Writeln(arsinh(1));
  7. end.