{"raw_statement":[{"iden":"problem statement","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$."},{"iden":"constraints","content":"*   $0 \\leq A \\leq 9$\n*   $0 \\leq B \\leq 9$\n*   $A + B \\leq 9$\n*   $A$ and $B$ are integers."},{"iden":"input","content":"The input is given from Standard Input in the following format:\n\n$A$ $B$"},{"iden":"sample input 1","content":"2 5"},{"iden":"sample output 1","content":"2\n\nWhen $A = 2, B = 5$, we have $A + B = 7$. Thus, printing any of $0, 1, 2, 3, 4, 5, 6, 8, 9$ is correct."},{"iden":"sample input 2","content":"0 0"},{"iden":"sample output 2","content":"9"},{"iden":"sample input 3","content":"7 1"},{"iden":"sample output 3","content":"4"}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}