Ответ:
var a,b,c: integer;
begin
ReadLn(a);
ReadLn(b);
if a > b then
c: = a
else
c := b;
WriteLn(c);
end.
Объяснение:
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
var a,b,c: integer;
begin
ReadLn(a);
ReadLn(b);
if a > b then
c: = a
else
c := b;
WriteLn(c);
end.
Объяснение: