crap code

This commit is contained in:
Danya Berezun 2024-01-26 18:45:03 +01:00 committed by Roman Venediktov
parent b22daf080d
commit 3fdc3e7f2a
16 changed files with 7066 additions and 248 deletions

View file

@ -14,7 +14,7 @@ fun fib (n) {
n := read ();
for i := n, i >= 1, i := i-1 do
for i := n, i > 0, i := i-1 do
fib (i);
write (i);
write (result)