var a,b,c: integer;
begin
Read(a,b,c);
if a>b*c then write(a*b*c)
else write (a+b+c);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
var a,b,c: integer;
begin
Read(a,b,c);
if a>b*c then write(a*b*c)
else write (a+b+c);
end.