t = input() idx_a = t.find('(') if idx_a != -1: idx_b = t.find(')', idx_a) if idx_b != -1: t = t[:idx_a] + '@' + t[idx_a+1:idx_b+1] print(t)