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