10069: ABC343 —— A - Wrong Answer
[Creator : ]
Description
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$.
Print any integer between $0$ and $9$, inclusive, that is not equal to $A + B$.
Input
The input is given from Standard Input in the following format:
```
$A$ $B$
```
```
$A$ $B$
```
Output
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.
- $0 \leq B \leq 9$
- $A + B \leq 9$
- $A$ and $B$ are integers.
Sample 1 Input
2 5
Sample 1 Output
7
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.
Sample 2 Input
0 0
Sample 2 Output
9
Sample 3 Input
7 1
Sample 3 Output
4