program test;
var a,b,c: integer
begin
read(a,b,c);
writeln;
if (a>b) and (b>c) then write (a);
if (b>a) and (b>c) then write (b) else
write(c);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
program test;
var a,b,c: integer
begin
read(a,b,c);
writeln;
if (a>b) and (b>c) then write (a);
if (b>a) and (b>c) then write (b) else
write(c);
end.