#include<stdio.h>int main(){ int c=0; char a[20]; scanf("%s",a); while(a[c]!='\0') c++; printf("Length of %s is %d",a,c); return 0;}