12 lines
175 B
C
12 lines
175 B
C
#include<stdio.h>
|
|
#include<ctype.h>
|
|
|
|
int main()
|
|
{
|
|
char a;
|
|
scanf("%c",&a);
|
|
if (a == toupper(a)) printf("%c", tolower(a));
|
|
else printf("%c", toupper(a));
|
|
return 0;
|
|
}
|