Append s

AtCoder
IDabc443_a
Time2000ms
Memory256MB
Difficulty
You are given a string $S$ consisting of lowercase English letters. Output the string obtained by appending `s` to the end of the string $S$. ## Constraints * $S$ is a string of length between $1$ and $10$, inclusive, consisting of lowercase English letters. ## Input The input is given from Standard Input in the following format: $S$ [samples]
Samples
Input #1
http
Output #1
https

Appending `s` to the end of `http` results in `https`, so print `https`.
Input #2
append
Output #2
appends
Input #3
beginner
Output #3
beginners
API Response (JSON)
{
  "problem": {
    "name": "Append s",
    "description": {
      "content": "You are given a string $S$ consisting of lowercase English letters. Output the string obtained by appending `s` to the end of the string $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": "abc443_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given a string $S$ consisting of lowercase English letters.\nOutput the string obtained by appending `s` to the end of the string $S$.\n\n## Constraints\n\n*   $S$ is a string of length between $1$...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments