Blame view

P57846_en/S001-AC.cc 171 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
#include <iostream>
#include <cmath>
#include <iomanip>

using namespace std;

int max2(int a, int b)
{
	if(a>b)
	{
		return a;
	}
	return b;
}

int main()
{
	return 0;
}