Wrong Answer

AtCoder
IDabc343_a
Time2000ms
Memory256MB
Difficulty
You are given two integers $A$ and $B$, each between $0$ and $9$, inclusive. Print any integer between $0$ and $9$, inclusive, that is not equal to $A + B$. ## Constraints * $0 \leq A \leq 9$ * $0 \leq B \leq 9$ * $A + B \leq 9$ * $A$ and $B$ are integers. ## Input The input is given from Standard Input in the following format: $A$ $B$ [samples]
Samples
Input #1
2 5
Output #1
2

When $A = 2, B = 5$, we have $A + B = 7$. Thus, printing any of $0, 1, 2, 3, 4, 5, 6, 8, 9$ is correct.
Input #2
0 0
Output #2
9
Input #3
7 1
Output #3
4
API Response (JSON)
{
  "problem": {
    "name": "Wrong Answer",
    "description": {
      "content": "You are given two integers $A$ and $B$, each between $0$ and $9$, inclusive. Print any integer between $0$ and $9$, inclusive, that is not equal to $A + B$.",
      "description_type": "Markdown"
    },
    "platform": "AtCoder",
    "limit": {
      "time_limit": 2000,
      "memory_limit": 262144
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "abc343_a"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "You are given two integers $A$ and $B$, each between $0$ and $9$, inclusive.\nPrint any integer between $0$ and $9$, inclusive, that is not equal to $A + B$.\n\n## Constraints\n\n*   $0 \\leq A \\leq 9$\n*   ...",
      "is_translate": false,
      "language": "English"
    }
  ]
}
Full JSON Raw Segments