#include <iostream>
#include <cstdio>
#include <cmath>
#include <ctime>
#include <cstdlib>
#include <cassert>
#include <vector>
#include <list>
#include <stack>
#include <queue>
#include <deque>
#include <map>
#include <set>
#include <bitset>
#include <string>
#include <algorithm>
#include <utility>
#define llint long long
#define inf 1e18
#define rep(x, s, t) for(llint (x) = (s); (x) < (t); (x)++)
#define Rep(x, s, t) for(llint (x) = (s); (x) <= (t); (x)++)
#define chmin(x, y) (x) = min((x), (y))
#define chmax(x, y) (x) = max((x), (y))

using namespace std;
typedef pair<llint, llint> P;

string s;
string t[] = {
	"う し", "う あ", "ん 笑", "た ぷ",
	"く ん", "ぷ に", "し き", "あ く",
	"う く", "あ 笑", "う ん", "し ぷ",
	"う き", "く 笑", "う 笑", "に き",
	"ぷ 笑", "た き", "た ん", "し あ",
	"し ん", "う う", "う た", "き 笑",
	"に く", "笑 笑"
};

int main(void)
{
	cin >> s;
	for(int i = 0; i < s.size(); i++){
		cout << t[s[i]-'a'] << " ";
	}
	cout << endl;
	
	return 0;
}