#abc209a. A - Counting
A - Counting
Score : points
问题描述
有多少个整数不小于 且不大于 ?
以上为通义千问 qwen-max 翻译,仅供参考。
Problem Statement
How many integers not less than and not more than are there?
Constraints
- and are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of integers not less than and not more than .
Sample Input 1
2 4
Sample Output 1
3
We have three integers not less than and not more than : , , , so we should print .
Sample Input 2
10 100
Sample Output 2
91
Sample Input 3
3 2
Sample Output 3
0
We have no integers not less than and not more than , so we should print .
update @ 2024/3/10 09:22:20