Var n, s:string; i:byte; begin read(s); n:=''; for i:=1 to length(s) do if s[i]<>',' then n:=n+s[i]; write(n); end.