A - delete . 解説 /

実行時間制限: 2 sec / メモリ制限: 1024 MiB

配点 : 100

問題文

英小文字および . からなる文字列 S が与えられます。 S から . を全て削除した文字列を求めてください。

制約

  • S は英小文字および . からなる長さ 1 以上 100 以下の文字列

入力

入力は以下の形式で標準入力から与えられる。

S

出力

S から . を全て削除した文字列を出力せよ。


入力例 1

.v.

出力例 1

v

.v. から . を全て削除すると v になります。したがって、 v を出力してください。


入力例 2

chokudai

出力例 2

chokudai

S. が含まれない場合もあります。


入力例 3

...

出力例 3


S の文字が全て . である場合もあります。

Score : 100 points

Problem Statement

You are given a string S consisting of lowercase English letters and .. Find 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 ..

Input

The input is given from Standard Input in the following format:

S

Output

Print the string obtained by removing all . from S.


Sample Input 1

.v.

Sample Output 1

v

Removing all . from .v. yields v, so print v.


Sample Input 2

chokudai

Sample Output 2

chokudai

There are cases where S does not contain ..


Sample Input 3

...

Sample Output 3


There are also cases where all characters in S are ..