var a,b:real;
begin
readln(a);
while not(a=99) do begin
b:=b+a;
readln(a);
end;
b:=b+a;
print(b);
end.
