Fun mechanics! Where did the number 37 come from?
#include <stdio.h> #include <stdlib.h> #include <time.h> int main() { srand(time(NULL)); int x = rand() % 100 + 1; printf("%d\n", x); return 0; }
Language may differ
It just sounded cool ngl