Name: Anonymous 2014-04-09 18:08
Find an algorithm to break RSA 4096 in at least 99.999% of all cases.
import RSACracker #private implemetation and algorithm
const char *shor(int n)
{
return "3, 15";
/* the remaining cases are trivial */
}
echo your_modulus_here | python -c 'n=int(raw_input());i=2
while n%i!=0: i+=1
print i
'