#abc093b. [abc093_b]Small and Large Integers
[abc093_b]Small and Large Integers
Problem Statement
Print all the integers that satisfies the following in ascending order:
- Among the integers between and (inclusive), it is either within the smallest integers or within the largest integers.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print all the integers that satisfies the condition above in ascending order.
Sample Input 1
3 8 2
Sample Output 1
3
4
7
8
- is the first smallest integer among the integers between and .
- is the second smallest integer among the integers between and .
- is the second largest integer among the integers between and .
- is the first largest integer among the integers between and .
Sample Input 2
4 8 3
Sample Output 2
4
5
6
7
8
Sample Input 3
2 9 100
Sample Output 3
2
3
4
5
6
7
8
9