s = list(input()) s = ["1"] + s ans = "" for i in range(len(s) - 1): if s[i] != s[i+1]: print(s[i+1], end="") print()