#include <iostream>
using namespace std;

int main()
{
    cin.tie(0);
    ios::sync_with_stdio(false);

    char x, y;
    cin >> x;
    cin >> y;
    
    cout << "(" << x << y << x << ")" << "/" << endl;

    return 0;
}