#C61. Decode ASCII to String
Decode ASCII to String
Decode ASCII to String
You are given a series of integers representing ASCII values. The input begins with an integer ( n ) which denotes the number of ASCII values to follow. On the next line, there are ( n ) space-separated integers. Your task is to convert these integers into their respective ASCII characters and output the resulting string. This problem tests basic input parsing and character manipulation skills.
inputFormat
The first line contains an integer ( n ). The second line contains ( n ) space-separated integers, each representing an ASCII value.
outputFormat
Output the decoded string which is formed by converting each ASCII value into its corresponding character.## sample
11
72 101 108 108 111 32 87 111 114 108 100
Hello World