#include #include using namespace std; char str[110]; int main(){ scanf("%s",str); for(int i=0;str[i];i++)str[i]^=32; printf("%s\n",str); }