Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- start = int(input())
- final = int(input())
- output = ''
- for i in range(start, final + 1):
- output += chr(i) + ' '
- print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement