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

int main()
{
	unsigned char s[] = "AbS.d_";

	tolower(s);
	printf("%s\n", s);

	return 0;
}