#include using namespace std; int main(){ string T; cin >> T; bool f = true; for(char c : T){ if(c == '('){ f = false; cout << '@'; } if(f) cout << c; if(c == ')') f = true; } }