编辑代码

#include <stdio.h>
int main ()
{
    char a,b,c;
    scanf("%c%c%c",&a,&b,&c);
    printf("%c%c%c",a-32,b-32,c-32);
    return 0;
}