#include <stdio.h>
#include <ctype.h>
int main() {
char u = 'A';
char l = tolower(u);
printf("%c in lowercase is %c", u, l);
return 0;
}