#include using namespace std; typedef unsigned long long ull; typedef long long ll; int main(){ char t[2]; cin >> t[0] >> t[1]; string s="("; s+=t[0]; s+=t[1]; s+=t[0]; s+=")/"; cout << s << endl; return 0; }