简单题
#include <stdio.h>char st;int main(){ //freopen("D:\\t.txt", "r", stdin); while (scanf("%c", &st) != EOF) printf("%c", st); return 0;}