ex24.pp 147 B

12345678910111213
  1. Program Example24;
  2. { Program to demonstrate the max function. }
  3. Uses math;
  4. Var
  5. A,B : Cardinal;
  6. begin
  7. A:=1;b:=2;
  8. writeln(max(a,b));
  9. end.