Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while True:
- word = input()
- if word == 'SoftUni':
- continue
- elif word == 'End':
- break
- output = ''
- for i in range(len(word)):
- output += word[i] * 2
- print(output)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement