#include <stdio.h> int main() { char b; scanf("%c",&b); if(b>='A' && b<='Z') b+=32;; printf("%c\n",b); return 0; }