#include <iostream>
#include <fstream>
#include <string>
#include "MM.h"

using namespace std;

void main(int argc, char* argv[])
{
	MM *test1 = new MM();

	test1->optimize(argv[1],argv[2],argv[3]);
	cout << " ";

	MM *test2 = new MM();
	test2->recognize(argv[3],argv[2]);
	cout << endl;
}