#include <stdio.h>
int main(void)
{
char str[10] = "Hello";
printf("%d\n", ft_strlen(str));
return (0);
}