import sys input = sys.stdin.readline S=input().strip() x=S.index("#") S=S[x+1:] x=S.index("#") S=S[:x] print(S)