var a, b, c:integer;
begin
readln(a, b, c);
write(max(max(a, b), c));
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var a, b, c:integer;
begin
readln(a, b, c);
write(max(max(a, b), c));
end.