#include using namespace std; int main(){ ios::sync_with_stdio(false); cin.tie(0); string S; cin >> S; string G[26]={"う し ","う あ ","ん 笑 ","た ぷ ","く ん ","ぷ に ","し き ","あ く ","う く ","あ 笑 ","う ん ","し ぷ ","う き ","く 笑 ","う 笑 ","に き ","ぷ 笑 ","た き ","た ん ","し あ ","し ん ","う う ","う た ","き 笑 ","に く ","笑 笑 "}; for(auto v:S)cout << G[v-'a']; cout << endl; }