#include #include int main(void){ char *a,*b,*c,*d; scanf("%c",a); scanf("%c",b); c=strcat(a,b); d=strcat(c,a); printf ("(%s)/\n",d); return 0; }