//Include Files go here
#include <stdlib.h>
#include <stdio.h>
#include <string>
#include <iomanip>
#include <math.h>
#include <iostream>

//End include files

//Global constants go here
const int max_file_name = 100;
const double pi = atan(1.0)*4;
const int max_line_length = 100;
const int max_name_length = 50;
const int max_descript_length = 80;
// End Globals

//Put function prototypes here (don't forget semicolons

using namespace std;
//g++ simple.cpp -o simple <--- this will compile and link it!

//Main program goes here
int main(int argc, char *argv[])
{
	int integer_number = 3;
	double double_number = 3.2;
	//Set it up so we can get and print out time
	cout << "integer_number= " << integer_number << endl;
	cout << "double_number= " << double_number << endl;


}








