mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 06:48:48 +00:00
10 lines
87 B
Text
10 lines
87 B
Text
local s, n;
|
|
|
|
s := 0;
|
|
|
|
repeat
|
|
n := read ();
|
|
s := s + n
|
|
until (n == 0);
|
|
|
|
write (s)
|