Advertisement
dsdeep

6th Val

Oct 10th, 2021
1,120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. a = 5
  2. b = 6
  3.  
  4. i = 2
  5. while i <= 6:
  6.     temp = b
  7.     b = a+b
  8.     a = temp
  9.     i += 1
  10. print(temp)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement