Помогите плиз плиз
var x,sum:integer;
begin
readln(x);
sum:=0;
while x<>0 do
sum:=sum+x;
end;
writeln(sum);
end.