program circle2; {$APPTYPE CONSOLE} var n,i,s:integer; begin readln(n); s:=0; for i:=n to 50 do if i mod 2=0 then s:=s+i; writeln(s); readln end.