a689549ca96c9b982a6f8b7803cd6796edace63693b6e4482d2034ac45d67679
// tresc: https://szkopul.edu.pl/problemset/problem/-sW59iNCsLGhh8xyFPEmtn7F/site/?key=statement
// OIG XIV (1 etap)
#include <iostream>
using namespace std;
int main() {
string v;
cin >> v;
for (int i = 0; i < v.size(); i++) {
if (v[i] == 'a') {
v[i] = '4';
}
if (v[i] == 'e') {
v[i] = '3';
}
if (v[i] == 's') {
v[i] = '5';
}
if (v[i] == 'i') {
v[i] = '1';
}
if (v[i] == 'o') {
v[i] = '0';
}
}
cout << v;
return 0;
}