#include <stdio.h>void main(){ char ch; scanf("%c",&ch); ch>='A'&&ch<='Z' ? printf("%c ",ch+32):printf("%c ",ch);}