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