#include using namespace std; using lint = long long; template using V = vector; template using VV = V< V >; template Z rng(Z a, Z b) { static mt19937 mt(chrono::steady_clock::now().time_since_epoch().count()); return uniform_int_distribution(a, b - 1)(mt); } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cout << (rng(0, 5) ? "Yes" : "No") << '\n'; }