code: word = raw_input() if word[0] in "aeiou": print word + "way" else: print word[1:] + word[:1] + 'ay',