#include <stdio.h> int main() { char a=0; while(scanf("%c",&a)!=EOF) { getchar(); printf("%c",a+32); printf("\n"); } return 0; }