/* CSE 333 Su12 lecture 12 demo: compare_solution_two/main.cc */
/* Gribble/Perkins */

// main program using comp<T> template

#include <iostream>
#include "compare.h"

using namespace std;

int main(int argc, char **argv) {
  cout << comp<int>(10, 20);
  cout << endl;
  return 0;
}