#include <stdio.h> #include <stdlib.h> int main() { int x= 0; while(getchar()!='\n') { x++; } printf("有%d个字符\n",x); return 0; }