import primes;

class Foo
{
	this ()
	{
		Primes.lookup(2);	
	}
}


void main()
{
	new Foo();
}

