1027: 输出区间内所有整数
Memory Limit:128 MB
Time Limit:1.000 S
Judge Style:Text Compare
Creator:
Submit:40
Solved:38
Description
输入两个整数a,b,输出a ~ b之间所有的整数(包括a,b)。
Input
3
5
5
Output
3
4
5
4
5
Sample Input Copy
5
8
Sample Output Copy
5
6
7
8