Ответ:
var
a , c : integer;
begin
read(a);
a := a + 9;
if (a <= 20) then begin
c := a + 74;
end
else begin
c := (a * 8) + 9;
end;
write(c);
end.
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
var
a , c : integer;
begin
read(a);
a := a + 9;
if (a <= 20) then begin
c := a + 74;
end
else begin
c := (a * 8) + 9;
end;
write(c);
end.