
#include <stdlib.h>
#include <stdio.h>
#include "cestypes.h"

int main( void ) {

  printf (" max of 1 and 2 is %d \n", MAX(1,2));
  printf (" min of 1 and 2 is %d \n", MIN(1,2));
  printf (" 1 is within 2 and 3 %ld \n", WITHIN(2,3,1));
  printf (" 2 is within 3 and 1 %ld \n", WITHIN(3,1,2));
  printf (" 3 is within 1 and 2 %ld \n", WITHIN(2,1,3));
  printf (" 2 is within 1 and 3 %ld \n", WITHIN(1,3,2));

  return 0;

}
