#include using namespace std; int main(){ srand((unsigned)time(NULL)); cout << 1 << endl; cout << (rand() % 2 ? "Yes" : "No") << endl; }