#include<stdio.h> #include<ctype.h> int main() { char ch; while(scanf("%c",&ch)!=EOF) { if(islower(ch)) printf("%c\n", toupper(ch)); else if(isu...