ex29.pp 147 B

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