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