Guest User

Untitled

a guest
Dec 17th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.09 KB | None | 0 0
  1. def sum(low,high) :
  2. sum = 0
  3. for i in range(low,high+1) :
  4. sum = sum +i
  5. print(sum)
Add Comment
Please, Sign In to add comment