lama_byterun/regression/test023.expr

11 lines
88 B
Text
Raw Normal View History

global s, n;
2018-03-20 20:30:58 +03:00
s := 0;
repeat
2018-04-25 01:06:18 +03:00
n := read ();
2018-03-20 20:30:58 +03:00
s := s + n
2019-04-10 22:15:08 +03:00
until (n == 0);
2018-03-20 20:30:58 +03:00
write (s)