The computer we use got so excited about the upcoming Google I/O that it started storing 1 and 0 as the capital letters I and O.
For example, the capital letter A is 65 in ASCII, so as a byte it should read 01000001, but this computer stores the same value as OIOOOOOI. Take a sequence of bytes written only with I and O and translate it back into text with ASCII.
Every byte is a printable character (32≤ byte value ≤126). The translated string has no space at its start or its end, but it may contain spaces inside.