#include void main(void) { char charA = 'a'; char charB = 'a'; scanf("%c %c",&charA,&charB); printf("%c %c",charB,charA); }