dic = {"o": 0, "O": 0, "I": 1, "l": 1} S = input() for c in S: print(dic.get(c, c), end = "") print("")