#include #include #include #include const std::vector dec{"う し ", "う あ ", "ん 笑 ", "た ぷ ", "く ん ", "ぷ に ", "し き ", "あ く ", "う く ", "あ 笑 ", "う ん ", "し ぷ ", "う き ", "く 笑 ", "う 笑 ", "に き ", "ぷ 笑 ", "た き ", "た ん ", "し あ ", "し ん ", "う う ", "う た ", "き 笑 ", "に く ", "笑 笑 "}; void solve() { std::string s; std::cin >> s; for (char c : s) std::cout << dec[c - 'a']; std::cout << "\n"; } int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); solve(); return 0; }