#include #define INF 1000000007 #define LINF 1000000000000000007 using namespace std; typedef long long Int; typedef pair P; int main(){ string s; cin >> s; for(int i = 0; i < s.size(); i++){ if(s[i] == 'o' || s[i] == 'O') cout << '0'; else if(s[i] == 'l' || s[i] == 'I') cout << '1'; else cout << s[i]; } cout << endl; return 0; }