087. The Robots

Codeforces
IDCF10269087
Time1000ms
Memory256MB
Difficulty
English · Original
Formal · Original
Welcome to the CodeRams Contest #8, and thanks for participating! We like to make contests with themes that tie together all of the problems. For this contest, the problems are all based on songs by the German band Kraftwerk. We'll provide links to each of the songs in each corresponding problem. We recommend that you listen to each song while you are solving each problem. (You're allowed to view the provided links, despite them requiring use of the internet.) The Robots (the song corresponding to this problem) For this first problem, you want to train your robot army to print out a given string of text three times. The only line contains a single line of input, consisting of any ascii characters. Print the line of text given in the input three times, with each one separated by a new line. ## Input The only line contains a single line of input, consisting of any ascii characters. ## Output Print the line of text given in the input three times, with each one separated by a new line. [samples]
**Definitions** Let $ s \in \mathcal{A}^* $ be the input string, where $ \mathcal{A} $ is the ASCII character set. **Objective** Output the string $ s $ repeated three times, each on a separate line: $$ s \\ s \\ s $$
API Response (JSON)
{
  "problem": {
    "name": "087. The Robots",
    "description": {
      "content": "Welcome to the CodeRams Contest #8, and thanks for participating! We like to make contests with themes that tie together all of the problems. For this contest, the problems are all based on songs by ",
      "description_type": "Markdown"
    },
    "platform": "Codeforces",
    "limit": {
      "time_limit": 1000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "CF10269087"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "Welcome to the CodeRams Contest #8, and thanks for participating!\n\nWe like to make contests with themes that tie together all of the problems. For this contest, the problems are all based on songs by ...",
      "is_translate": false,
      "language": "English"
    },
    {
      "statement_type": "Markdown",
      "content": "**Definitions**  \nLet $ s \\in \\mathcal{A}^* $ be the input string, where $ \\mathcal{A} $ is the ASCII character set.\n\n**Objective**  \nOutput the string $ s $ repeated three times, each on a separate l...",
      "is_translate": false,
      "language": "Formal"
    }
  ]
}
Full JSON Raw Segments