lama_byterun/regression/test023.lama

11 lines
82 B
Text
Raw Permalink Normal View History

var 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)