s = list(input()) for i in range(len(s)): if s[i] == 'O' or s[i] == 'o': s[i] = '0' if s[i] == 'I' or s[i] == 'l': s[i] = '1' print(''.join(s))