48. ASCII

Time Limit: 1 seconds

Memory Limit: 1024 MB

Rating: 900

Problem Statement

Given an integer $N$ $(33 \le N \le 126)$, output the corresponding ASCII character with a value of $N$.

Input

On the first line, you are given an integer $N$ $(33 \le N \le 126)$.

Output

Output the answer described in the Problem Statement.

Sample Cases
Sample Input 1:
65

Sample Output 1:
A

Sample Input 2:
124

Sample Output 2:
|
Explanation

Not available for this problem.

Sources

Test Contest > Problem C

Submit | Back