#include int main(void){ char str[101], *p; p = str; gets(str); while(*p){ if(*p <= 90) putchar(*p + 32); else putchar(*p - 32); p++; } return 0; }