Question and Answers Forum | ||
Question Number 175505 by EnterUsername last updated on 31/Aug/22 | ||
![]() | ||
Commented by Ar Brandon last updated on 31/Aug/22 | ||
#include <stdio.h> int main(void) { long long i = 2, N = 64990691606209; for (; (N % i) != 0; i++); printf("p = %lld, q = %lld", i, N/i); return 0; } | ||
Commented by Linton last updated on 31/Aug/22 | ||
![]() | ||
Answered by Ar Brandon last updated on 31/Aug/22 | ||
![]() | ||
| ||