Rounding

AtCoder
IDabc130_a
Time2000ms
Memory256MB
Difficulty
$X$ and $A$ are integers between $0$ and $9$ (inclusive). If $X$ is less than $A$, print $0$; if $X$ is not less than $A$, print $10$. ## Constraints * $0 \leq X, A \leq 9$ * All values in input are integers. ## Input Input is given from Standard Input in the following format: $X$ $A$ [samples]
Samples
Input #1
3 5
Output #1
0

$3$ is less than $5$, so we should print $0$.
Input #2
7 5
Output #2
10

$7$ is not less than $5$, so we should print $10$.
Input #3
6 6
Output #3
10

$6$ is not less than $6$, so we should print $10$.
API Response (JSON)
{
  "problem": {
    "name": "Rounding",
    "description": {
      "content": "$X$ and $A$ are integers between $0$ and $9$ (inclusive). If $X$ is less than $A$, print $0$; if $X$ is not less than $A$, print $10$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc130_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "$X$ and $A$ are integers between $0$ and $9$ (inclusive).\nIf $X$ is less than $A$, print $0$; if $X$ is not less than $A$, print $10$.\n\n## Constraints\n\n*   $0 \\leq X, A \\leq 9$\n*   All values in input...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments