#include <ctype.h>

int tolower(int c) {
  return (c - 32);
}