#include using namespace std; random_device rd; mt19937 rng(rd()); int main() { printf("Ye%c\n", (rng() % 4 ? 's' : '_')); return 0; }