#include <stdio.h>
char c;
main() {
	printf("Majs: ");
	scanf("%c", &c);
	c = c -'A'+'a';
	printf("Mins %c\n", c);
}

