function booleanToString(b){
if(b) { return "true"}
  else{return "false"}
}