#include #include int main() { char a; scanf("%c",&a); if (a == toupper(a)) printf("%c", tolower(a)); else printf("%c", toupper(a)); return 0; }