#!/usr/bin/env python3 from sys import stdin for line in stdin: i = chr(int(line)) print(i, end='')