Development C++ Tutorial

#include 
using namespace std;
#define getmax(a,b) ((a)>(b)?(a):(b))
int main()
{
  int x=5, y;
  y= getmax(x,2);
  cout << y << endl;
  cout << getmax(7,x) << endl;
  return 0;
}