#include<stdio.h> int main(){ char a,b,c; scanf("%c\n%c\n%c",&a,&b,&c); printf("%c\n%c\n%c",a+32,b+32,c+32); return 0; } //一种瞎猫碰上死耗子的解法哈哈。