#include<stdio.h> void main(){ char c1,c2; scanf("%c %c",&c1,&c2); c1 += 32; c2 -= 32; printf("%c,%c",c1,c2); }