import std; void main() { auto s = readln.chomp; auto t = s.substitute('I', '1', 'l', '1', 'O', '0', 'o', '0'); writeln(t); }