var n = prompt ("Введите число") var s = 0 while (n > 0) { s += n % 10 n = Math.floor(n/10) } alert("Сумма цифр числа: " + s)