a=list(input()) for i in range(len(a)): if a[i]=='O' or a[i]=='o': a[i]='0' if a[i]=='I' or a[i]=='l': a[i]='1' print(a[i], end='') print()