1 2 3 4 5 6 7 8 9 10 11
n1 = 0 n2 = 1 count = 0 until = 10 print(f"These are the first {until} numbers in the Fibonacci sequence:") while count < until: print(n1) n1, n2 = n2, n1 + n2 count += 1