#abc372a. A - delete .

A - delete .

Score : 100100 points

问题陈述

给定一个由小写英文字母和.组成的字符串SS。找出通过从SS中移除所有.得到的字符串。

以上为大语言模型 kimi 翻译,仅供参考。

Problem Statement

You are given a string SS consisting of lowercase English letters and .. Find the string obtained by removing all . from SS.

Constraints

  • SS is a string of length between 11 and 100100, inclusive, consisting of lowercase English letters and ..

Input

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

SS

Output

Print the string obtained by removing all . from SS.

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 SS does not contain ..

Sample Input 3

...

Sample Output 3

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