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