By the way, here's the program I'm working on. The goal is to figure out the probabity of 2 out of 100 people in a room sharing the same birthday. Right now, I'm trying to find the probability of the two people not sharing the same day, and the program is coded to generate the numerator:

Code:
#include <iostream>
using namespace std;

int main(void)
{
	int numDays = 365;
	int numPeople = 100;
	unsigned int product = 1;
	for (int i = 0; i < numPeople; i++)
	{
		product = product * (numDays - i);
		cout << product << "\n";
	}

	return 0;
}
Thanks again!