Вычислить S=1!+2!...+6!
begin
var (p, s) := (1, 1);
for var i := 2 to 6 do
p *= i;
s += p
end;
s.Println
end.
S=1+2+6+24+120+720=853
Сумма неверна