Задача 5 Урок 9

Задача 5 Урок 9

Пользователь вводит два числа, найдите из них максимальное

var
  a, b : integer;
begin
  writeln('Enter the first number');
  readln (a);
  writeln('Enter the second number');
  readln(b);
  if ((a > b)) then
   writeln ('The number a the big')
  else
   writeln('The number b the big');
  readln();
end.