NUMBER_OF_FIBONACCI = 25 # Initialize the first two Fibonacci numbers prev_fib, curr_fib = 0, 1 # Print the first two numbers print(prev_fib) print(curr_fib) # Loop to calculate and print the remaining 18 Fibonacci numbers for _ in range(NUMBER_OF_FIBONACCI - 2): # anonymous variable prev_fib, curr_fib = curr_fib, prev_fib + curr_fib print(curr_fib)