summaryrefslogtreecommitdiff
path: root/3p1-1p11.cpp
blob: 3fe0ea88de2006b27c1245bd08e636afede7a8d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <iostream>

/*
 *
 * 3.1, 1.11
 *
 *
 */

using std::cout;
using std::cin;
using std::endl;
int main () {

	int First = 0;
	int Second = 0;
	cin >> First >> Second;
	cout << endl;
	First++;
	while(First < Second) {
		cout << First << endl;
		First++;
	}

	return 0;
}