#include #include #include using namespace std; int main(void) { srand(time(NULL)); if(rand()%5 < 4) cout << "Yes" << endl; else cout << "a" << endl; return 0; }