program LoseWeight;varweight : real;days : integer;beginweight := 100;days := 0;
while weight > 80 dobeginweight := weight - weight * 0.01;days := days + 1;end;
writeln('Boxer will lose weight in ', days, ' days');end.
program LoseWeight;
var
weight : real;
days : integer;
begin
weight := 100;
days := 0;
while weight > 80 do
begin
weight := weight - weight * 0.01;
days := days + 1;
end;
writeln('Boxer will lose weight in ', days, ' days');
end.