Blame view

P97156_en/S002-AC.cc 242 Bytes
Imanol-Mikel Barba Sabariego authored
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
27
28
#include <iostream>

using namespace std;

int main()
{
	int a,b;

	cin >> a;
	cin >> b;

	if(a>b)
	{
		cout << endl;
		return 0;
	}

	cout << a;

	for(int i = a+1; i < b+1; i++)
	{
		cout << ",";
		cout << i;
	}
	cout << endl;
	return 0;

}