Better value control

This commit is contained in:
Dmitry Boulytchev 2019-04-10 22:15:08 +03:00
parent d8ddf25a7f
commit 9bec185603
14 changed files with 147 additions and 100 deletions

View file

@ -3,6 +3,6 @@ s := 0;
repeat
n := read ();
s := s + n
until n == 0;
until (n == 0);
write (s)