#include <stdio.h>

int triscore(const int *, const int *, int);

int main(void)
{
	int stbrett[26];
	int ciphertext[186];
	unsigned long i;

	for(i = 0; i < 25; i++)
		stbrett[i] = i;
	for(i = 0; i < 186; i++)
		ciphertext[i] = i;

	for(i = 0; i < 1000000; i++) 
		triscore(stbrett, ciphertext, 186);
}
