dxnge

1

Oct 17th, 2021
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.07 KB | None | 0 0
  1. s = 0
  2. n = 2
  3. while n < 128:
  4.   s = s + 3
  5.   n = n * 2
  6. print(37 - s)
Advertisement
Add Comment
Please, Sign In to add comment