def main(): S = input() ans = S.translate(str.maketrans('IlOo', '1100')) print(ans) main()