#include using namespace std; int main () { bool flag {true}; if (flag) { cout << "Yes"; } else { cout << "No"; } cout << endl; return 0; }