原题地址
#include<stdio.h> int main() { int n; while(scanf("%d",&n)!=EOF) { printf("%c",n); } return 0; }