fork download
#include <iostream>
using namespace std;
 
int main() {
 
	bool test = false; // false right? Can't enter, right?
	if (test = "YES")
	{
		cout << "entered";
	}
	else
	{
		cout << "skipped";
	}
	cout << '\n';
	if (test = "NO")
	{
		cout << "entered";
	}
	else
	{
		cout << "skipped";
	}

	return 0;
}
Success #stdin #stdout 0s 15224KB
stdin
Standard input is empty
stdout
entered
entered