#include <stdio.h>
#include <string.h>
int main()
{
char string[] = "Hello";
printf("%lu %lu", sizeof(string), strlen(string));
return 0;
}