# Variables y sus valores iniciales a = 1 b = 1 # Repetir cálculos mientras a sea inferior a 1000 while a < 1000: print(a) c = a + b a, b = b, c