using System; using System.Linq; namespace y { class Program { static void Main(string[] args) { var s = Console.ReadLine(); s = s.Replace("I", "1"); s = s.Replace("l", "1"); s = s.Replace("O", "0"); s = s.Replace("o", "0"); Console.WriteLine(s); } } }