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