Skip to content

Instantly share code, notes, and snippets.

@paulhankin
Last active June 15, 2019 10:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save paulhankin/090cf884ae0af136d66dfc9f7419e5b4 to your computer and use it in GitHub Desktop.
Save paulhankin/090cf884ae0af136d66dfc9f7419e5b4 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int main() {
int result = 1;
int n = 17;
for (int i=0; i < (2^64); i++) {
result = (result * n) % 115763;
}
printf("%d\n", result);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment