#includeint main(){ char c; scanf("%c",&c); if(c<'A'||c>'Z') { printf("Input error!\n"); return -1; } printf("%c",c+32); return 0;}