#include "Huffman.h"
#include <iostream>
using namespace std;

int main()
{
	cout << "Compress file: ";
	char *str = new char[255];
	
	cin >> str;

	Huffman *h = new Huffman(str);

	
	system("PAUSE");
}
