// main.cpp

#include <iostream>
using namespace std;

#include "triangle.h"

void main(void)
{
	Triangle a;
	int total = 0;  // Total number of solutions

	for (int k = 0; k < 15; ++k) {
		int partial = a.solve(k);
		cout << "Partial count: " << partial << endl;
		total += partial;
	}
	cout << "Total number of solutions: " << total << endl;
}