Blame view

P59875_en/S001-AC.cc 249 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
#include <iostream>

using namespace std;

int main()
{
	int a,b;

	cin >> a;
	cin >> b;

	if(a<b)
	{
		for(int i = b; i > a-1; i--)
		{
			cout << i << endl;
		}
		return 0;
	}
	for(int i = a; i > b-1; i--)
	{
		cout << i << endl;
	}
	return 0;

}