#include
using std::cout;
using std::cin;
using std::endl;
int biggest(int, int); //Функция нахождения большего из 2-ух чисел
int main()
{
int a, b, c;
cout << "Enter the three numbers: ";<br> cin >> a >> b >> c;
cout << "Biggest: " << biggest(biggest(a, b), c) << endl;<br>
cin.get();
return 0;
}
int biggest(int x, int y)
{
if(x > y)
{
return x;
}
else
return y;
}