#include using namespace std; void convert(string &S){ for (auto &c : S){ if (c == 'I' or c == 'l') c = '1'; if (c == 'O' or c == 'o') c = '0'; } } int main() { cin.tie(0); ios::sync_with_stdio(false); string S; cin >> S; convert(S); cout << S << endl; return 0; }