1 2 3 4 5 6 7 8 9 10 11
a := 0 b := 1 n := 10 # n := read_int(0) while n > 0 { c := a + b a = b b = c n = n - 1 } print(a)