#ifndef H_COMMON_GENERAL
#define H_COMMON_GENERAL
int max(int first, int second)
{
return (first < second) ? second : first;
}
#endif