var s = 0, x; while(true){ x = parseInt(prompt('Введите очередное число или 0 для окончания', '0')); if(x == 0) break; s += x; } alert('Сумма: ' + s)