l = ['う し', 'う あ', 'ん 笑', 'た ぷ', 'く ん', 'ぷ に', 'し き', 'あ く', 'う く', 'あ 笑', 'う ん', 'し ぷ', 'う き', 'く 笑', 'う 笑', 'に き', 'ぷ 笑', 'た き', 'た ん', 'し あ', 'し ん', 'う う', 'う た', 'き 笑', 'に く', '笑 笑'] # s = input().split() # for i in range(0, len(s), 2): # print(chr(l.index(s[i] + s[i + 1]) + 97), end='') s = input() ans = [] for c in s: ans.append(l[ord(c) - 97]) print(' '.join(ans) + ' ')