#include int main() { char a, b, c; scanf("%c%c", &a, &c); scanf("%c", &b); printf("(%c%c%c)/", a, b, a); return 0; }