lama_byterun/regression/test023.lama

11 lines
84 B
Text
Raw Normal View History

2019-09-29 02:47:07 +03:00
local s, n;
2018-03-20 20:30:58 +03:00
s := 0;
do
2018-04-25 01:06:18 +03:00
n := read ();
2018-03-20 20:30:58 +03:00
s := s + n
while n != 0 od;
2018-03-20 20:30:58 +03:00
write (s)