mirror of
https://github.com/danog/PrimeModule-ext.git
synced 2024-11-26 20:04:40 +01:00
8 lines
162 B
C
8 lines
162 B
C
|
#include <primemodule.h>
|
||
|
#include <stdio.h>
|
||
|
#include <stdint.h>
|
||
|
|
||
|
// Compile with -lprimemodule
|
||
|
int main() {
|
||
|
printf("%ld\n", factorize(2189285106422392999));
|
||
|
}
|