program p;
var b, c:integer;
begin
c := 0;
b := 3;
while b
c := c + b;
b := b + 2;
end;
writeln(c);
end.