#include <iostream> #include <queue> #include <stdio.h> #include <string.h> using namespace std; int main() { char str[100] = { 0 }; cin.getline(str, sizeof(str)); scanf("%s",str); char* p=str; int cnt=0; for(;*p!=0;p++){ cnt++; } printf("%d",cnt); // writ...