#include <stdio.h>
int main(void)
{
char a[30];
char *str1;
str1=a;
gets(a);
while(!(*str1 == '/' && *(str1+1) == '*'))
str1++;
*(++str1)='/';
str1=str1+1; //指向注释中第一个字符
while(!(*str1 == '*' && *(str1+1) == '/'))
{
if (*str1>='A'&&*str1<='Z')
*str1=*str1+32;
if (*str1>='a'&&*str1<='z')
*str1=*str1-32;
str1++;
}
*str1='\0';
puts(a);
return 0;
}