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