bool isBlank(char* s)
  {
    for(int k = 0; s[k] != '\0'; k++) 
    {
      if(s[k] != ' ' && s[k] != '\t') return 0;
    }
    return 1;
  }