Ejemplo n.º 1
0
// BEGIN CUT HERE
int main( int argc, char* argv[] )
{
    {
        MissingLCM theObject;
        eq(0, theObject.getMin(1),2);
    }
    {
        MissingLCM theObject;
        eq(1, theObject.getMin(2),4);
    }

    {
        MissingLCM theObject;
        eq(2, theObject.getMin(3),6);
    }
    {
        MissingLCM theObject;
        eq(3, theObject.getMin(4),8);
    }
    {
        MissingLCM theObject;
        eq(4, theObject.getMin(5),10);
    }
    {
        MissingLCM theObject;
        eq(5, theObject.getMin(42),82);
    }
    {
        MissingLCM theObject;
        eq(6, theObject.getMin(999999),1999966);
    }

    return 0;
}
Ejemplo n.º 2
0
int main(){
	scanf("%d",&N);
	printf("%d",test.getMin(N));
	return 0;
}