Guest User

Untitled

a guest
Oct 17th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.08 KB | None | 0 0
  1. sum = 0
  2. n = 553
  3. while n <= 7961812:
  4. sum = sum + n
  5. n = n + 1
  6.  
  7. print(sum)
Add Comment
Please, Sign In to add comment