Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- vovels = 'aeiouy'
- s = input().lower()
- if s[0] in vovels:
- print(s + 'way')
- else:
- print(s[1:] + s[0] + 'ay')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement