#C4. ASCII to String Conversion
ASCII to String Conversion
ASCII to String Conversion
You are given a sequence of integer values, each representing an ASCII code. Your task is to convert these integers into their corresponding characters to form a string.
The conversion can be described by the formula: \( c = \mathrm{char}(a) \), where \(a\) is an ASCII code and \(c\) is the resulting character.
Example:
- Input: 5 integers: 72 101 108 108 111
- Output: "Hello"
Note: In this problem, the input is taken from stdin and the output should be printed to stdout.
inputFormat
The first line contains an integer \(N\) denoting the number of ASCII values. The second line contains \(N\) space-separated integers representing the ASCII codes.
outputFormat
Output a single string that is formed by converting each ASCII code to its corresponding character.
## sample5
72 101 108 108 111
Hello