#include<stdio.h>
int main()
{
    char s[] = "Hi";
    printf("%zu %zu", sizeof s, strlen(s));
}