MOOSACO Solution: Racists

Since there is no criteria for whether a cow is racist, the only possible solution is to hard code the answer.

You can use each of your submissions to narrow down the possibilities for each cow's ID. Then, you can simply check if each one is racist according to the answer.

Sample code:

#include <iostream>
using namespace std;

int main() {
    int id;
    cin >> id;
    string s = "NO";
    if (id == 42069) s = "YES";
    if (id == 289) s = "YES";
    if (id == 91634) s = "YES";
    cout << s << endl;
}