S=input() ANS=[] for s in S: if s=="I" or s=="l": ANS.append("1") elif s=="O" or s=="o": ANS.append("0") else: ANS.append(s) print("".join(ANS))