Run ID:136015
提交时间:2025-11-08 20:10:33
#include<bits/stdc++.h> using namespace std; int main(){ int T; cin>>T; int str[T]; for(int i=0;i<T;i++)cin>>str[i]; for(int j=0;j<T;j++)cout<<char(str[j]); return 0; }