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