#include #include int main() { char ch; while((ch = fgetc(stdin)) != EOF) { if(isalpha(ch)) ch = toupper(ch); fputc(ch,stdout); } return(0); }