#include <stdio.h>
#include <ctype.h>

int main(void) {
char quote[] = "To be or not to be, that is the question.";
int i;
for (i = 0; quote[i] != '\0'; i++){
  quote[i] = tolower(quote[i]);
}
printf("%s\n",quote);
return 0;
}
