1024 байт * 0,5 = 512 байт
512 - 500 = 12 байт
Атрибуты method, action и <input type='submit'>.
А конкретнее method='POST' action='post.php' и <input type='submit'> внутри формы
Var n,k,sum,i:integer;
begin
readln (n);
if (n<10)and(n>-10) then
for i:=1 to 10 do begin
if n mod i=0 then
sum:=sum+i;
k:=k+1;
end;
writeln(sum, ' ', k);
end.