S=input() L=[] L.append(S[0]) for i in range(len(S)-1): if S[i+1]!=S[i]: L.append(S[i+1]) print("".join(L))