mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-16 03:38:47 +00:00
9 lines
80 B
Text
9 lines
80 B
Text
|
|
var s = 0;
|
||
|
|
|
||
|
|
repeat
|
||
|
|
var n = read ();
|
||
|
|
s := s + n
|
||
|
|
until (n == 0);
|
||
|
|
|
||
|
|
write (s)
|