lama_byterun/regression/test023.expr
2018-04-25 01:06:18 +03:00

8 lines
72 B
Text

s := 0;
repeat
n := read ();
s := s + n
until n == 0;
write (s)