{"raw_statement":[{"iden":"statement","content":"The Octal Numeral system is a Base-8 number system, with the same concept and algorithm as other number systems, such as binary and hexadecimal. The advantages of using the base 8 system, is that all of its components are made of numbers, unlike the hexadecimal system, and is shorter than the binary system.\n\nThe input will be composed of different integer values depicting octal values, separated by spaces, which represent a certain Unicode value once converted into a decimal.\n\nOutput the translated string.\n\n"},{"iden":"input","content":"The input will be composed of different integer values depicting octal values, separated by spaces, which represent a certain Unicode value once converted into a decimal."},{"iden":"output","content":"Output the translated string."}],"translated_statement":null,"sample_group":[],"show_order":[],"formal_statement":"**Definitions**  \nLet $ O = \\{o_1, o_2, \\dots, o_n\\} $ be a sequence of octal integers (base-8), represented as strings of digits from $\\{0,1,2,3,4,5,6,7\\}$.\n\n**Constraints**  \nEach $ o_i $ is a valid octal numeral (no digit outside $\\{0,1,2,3,4,5,6,7\\}$).\n\n**Objective**  \nFor each $ o_i $, convert it to its decimal equivalent $ d_i = \\text{octal\\_to\\_decimal}(o_i) $.  \nOutput the string formed by the Unicode characters corresponding to the decimal values $ d_i $:  \n$$\n\\text{result} = \\bigoplus_{i=1}^{n} \\text{chr}(d_i)\n$$","simple_statement":"Convert given octal numbers to decimal, then to characters, and print the resulting string.","has_page_source":false}