//**************************************************************
//
//  CS 240B   Winter Quarter 2003 Ohio University Travis Dillon
//  Proj2   : Array Workshop
//  file    : prog2.h
//  started : 01-16-03
//
//**************************************************************

#ifndef PROG2
#define PROG2
#include <iostream>
using namespace std;

const int MAX_ARRAY_SIZE = 200;
const int MIN_ARRAY_SIZE = 3;

#endif  //PROG2