#include <stdio.h>

main() {
	char c;

	printf("Majs: ");
	scanf("%c", &c);
	c = c -'A'+'a';
	printf("Mins %c\n", c);
}

