Spread

AtCoder
IDabc329_a
Time2000ms
Memory256MB
Difficulty
You are given a string $S$ consisting of uppercase English letters. Separate each character of $S$ with a space and print them one by one in order. ## Constraints * $S$ is a string consisting of uppercase English letters with a length between $2$ and $100$, inclusive. ## Input The input is given from Standard Input in the following format: $S$ [samples]
Samples
Input #1
ABC
Output #1
A B C

Separate `A`, `B`, and `C` with spaces and print them one by one.
There is no need to print a space after `C`.
Input #2
ZZZZZZZ
Output #2
Z Z Z Z Z Z Z
Input #3
OOXXOO
Output #3
O O X X O O
API Response (JSON)
{
  "problem": {
    "name": "Spread",
    "description": {
      "content": "You are given a string $S$ consisting of uppercase English letters. Separate each character of $S$ with a space and print them one by one in order.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc329_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given a string $S$ consisting of uppercase English letters. Separate each character of $S$ with a space and print them one by one in order.\n\n## Constraints\n\n*   $S$ is a string consisting of u...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments