#include <iostream>
using namespace std;

template <class T>
void max (T x, T y)
{
string result;
if (x > y)
cout << x << " is bigger than " << y;
else if (x == y)
cout << x << " is equal to " << y;
else
cout << y << " is bigger than " << x;
}

int main()
{
double x = 5.6, y = 4.4;
max (x, y);
}
