#include int main() { std::cin.tie(nullptr); std::ios::sync_with_stdio(false); char eye, mouth; std::cin >> eye >> mouth; std::cout << '(' << eye << mouth << eye << ")/\n"; return 0; }