11194: ABC372 - A - delete .
[Creator : ]
Description
You are given a string S consisting of lowercase English letters and .
.
Find the string obtained by removing all .
from S.
Input
The input is given from Standard Input in the following format:
$S$
Output
Print the string obtained by removing all .
from $S$.
Constraints
- S is a string of length between 1 and 100, inclusive, consisting of lowercase English letters and
.
.
Sample 1 Input
.v.
Sample 1 Output
v
Removing all .
from .v.
yields v
, so print v
.
Sample 2 Input
chokudai
Sample 2 Output
chokudai
There are cases where $S$ does not contain .
.
Sample 3 Input
...
There are also cases where all characters in $S$ are .
.