О, это же КИТ,
1-2
2-4
3-8
.
6-64
Складываем 2+4+8+64=78
V=S/t - общепринятая формула. Соответственно в ячейке С1 будет формула =A1/B1
1. Помыть картофель
2. Положить в кастрюлю
3. Помытт
4. Вылить воду
5. Почистить
6. Поставить на печь
7. Включить печь
8. Жарится
9. Ждать 40 минут
Var unitsCount,
tensCount,
hundredsCount,
number : integer;
begin
readln(number);
unitsCount := number mod 10;
tensCount := (number div 10) mod 10;
hundredsCount := number div 100;
writeln('Count of units: ', unitsCount);
writeln('Count of tens: ', tensCount);
writeln('Count of hundreds: ', hundredsCount);
writeln('Sum of digits: ', unitsCount + tensCount + hundredsCount);
writeln('Multiplication of digits: ', unitsCount * tensCount * hundredsCount);
<span>end.</span>