#include<string.h>

int  main() {
  char a[5]="Hello";
  char b[]="world!";
  
  printf("Length of a is %d\n",strlen(a));

  return 0;
}
