#include #include int main(void){ // a:p, b:pの逆 char a,b; scanf("%c %c", &a,&b); printf("%c %c\n", b, a); return 0; }