Skip to content

Instantly share code, notes, and snippets.

@nawazm92
Last active November 24, 2019 14:29
Show Gist options
  • Save nawazm92/f5b952ccb651034dee8d701898184617 to your computer and use it in GitHub Desktop.
Save nawazm92/f5b952ccb651034dee8d701898184617 to your computer and use it in GitHub Desktop.
n1, n2 = 0, 1
count = 0
while count < 25:
print(n1)
nt = n1 + n2
n1 = n2
n2 = nt
count += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment