(lambda n:[print(''.join(n[i].replace(n[i],'_')),end='') if i!=0 and i != len(n)-1 else print(''.join(n[i]),end='') for i in range(len(n))])(input())