#include int length(char s) { int i; for(i=0;s[i]!=\'\\0\';i++) {} printf("%d",i); } int main() { char s[100]; scanf(&