#include int solution() { // return the right answer here srand(0); int a = 0; int b = 1000; int result = rand() % (b - a) + a; srand(0); return result; }