mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
9 lines
68 B
Text
9 lines
68 B
Text
|
|
s := 0;
|
||
|
|
|
||
|
|
repeat
|
||
|
|
read (n);
|
||
|
|
s := s + n
|
||
|
|
until n == 0;
|
||
|
|
|
||
|
|
write (s)
|