delete .

AtCoder
IDabc372_a
Time2000ms
Memory256MB
Difficulty
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$ [samples]
Samples
Input #1
.v.
Output #1
v

Removing all `.` from `.v.` yields `v`, so print `v`.
Input #2
chokudai
Output #2
chokudai

There are cases where $S$ does not contain `.`.
Input #3
...
Output #3
There are also cases where all characters in $S$ are `.`.
API Response (JSON)
{
  "problem": {
    "name": "delete .",
    "description": {
      "content": "You are given a string $S$ consisting of lowercase English letters and `.`. Find the string obtained by removing all `.` from $S$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc372_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given a string $S$ consisting of lowercase English letters and `.`. Find the string obtained by removing all `.` from $S$.\n\n## Constraints\n\n*   $S$ is a string of length between $1$ and $100$,...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments