100931: [AtCoder]ABC093 B - Small and Large Integers

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

Print all the integers that satisfies the following in ascending order:

  • Among the integers between $A$ and $B$ (inclusive), it is either within the $K$ smallest integers or within the $K$ largest integers.

Constraints

  • $1 \leq A \leq B \leq 10^9$
  • $1 \leq K \leq 100$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

$A$ $B$ $K$

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
  • $3$ is the first smallest integer among the integers between $3$ and $8$.
  • $4$ is the second smallest integer among the integers between $3$ and $8$.
  • $7$ is the second largest integer among the integers between $3$ and $8$.
  • $8$ is the first largest integer among the integers between $3$ and $8$.

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

Input

题意翻译

按升序打印满足以下条件的所有整数: - 在 $A$ 和 $B$(含)之间的整数中,它在 $K$ 个最小整数之内或在 $K$ 个最大整数之内。

加入题单

算法标签: