#include<iostream> using namespace std; int main(){ int t,n; cin>>t; for(;t>0;t--){ cin>>n; cout<<(char)n; } return 0; }