fun main(args : Array) { val S = readLine() ?: "" val R = S .replace('l', '1', false) .replace('I', '1', false) .replace('O', '0', true) println(R) }