Blame view

P56118_en/S001-AC.cc 170 Bytes
Imanol-Mikel Barba Sabariego authored
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <iostream>

using namespace std;

int main()
{
	int a,b;
	cin >> a;
	cin >> b;

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