Last Two Digits

AtCoder
IDabc254_a
Time2000ms
Memory256MB
Difficulty
You are given an integer $N$ at least $100$. Print the last two digits of $N$. Strictly speaking, print the tens and ones digits of $N$ in this order. ## Constraints * $100 \le N \le 999$ * $N$ is an integer. ## Input Input is given from Standard Input in the following format: $N$ [samples]
Samples
Input #1
254
Output #1
54

The last two digits of $254$ are $54$, which should be printed.
Input #2
101
Output #2
01

The last two digits of $101$ are $01$, which should be printed.
API Response (JSON)
{
  "problem": {
    "name": "Last Two Digits",
    "description": {
      "content": "You are given an integer $N$ at least $100$. Print the last two digits of $N$. Strictly speaking, print the tens and ones digits of $N$ in this 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": "abc254_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given an integer $N$ at least $100$. Print the last two digits of $N$.\nStrictly speaking, print the tens and ones digits of $N$ in this order.\n\n## Constraints\n\n*   $100 \\le N \\le 999$\n*   $N$ ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments