按照题意原样输出即可。
#include<cstdio> char str[100]; int main(){ scanf("%s", str + 1); printf("%s\n", str + 1); }