#abc343a. A - Wrong Answer
A - Wrong Answer
Score: points
问题描述
你将得到两个整数 和 ,它们的取值范围都在 到 (包含两端点)之间。
请输出一个在 到 (同样包含两端点)之间的整数,但要求该整数不能等于 。
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
You are given two integers and , each between and , inclusive.
Print any integer between and , inclusive, that is not equal to .
Constraints
- and are integers.
Input
The input is given from Standard Input in the following format:
Output
Print any integer between and , inclusive, that is not equal to .
Sample Input 1
2 5
Sample Output 1
2
When , we have . Thus, printing any of is correct.
Sample Input 2
0 0
Sample Output 2
9
Sample Input 3
7 1
Sample Output 3
4
update @ 2024/3/10 01:15:15