/*string04.c*/
#include <stdio.h>
#include <string.h>

int main(void)
{
	// your code goes here
	char str[32];
	size_t len;
	
	printf("Input string--\n");
	scanf("%s",str);

	len = strlen(str);
	printf("Length of %s is%d\n",str);

	return 0;
}
