using namespace std;
string password = "yes"; //what is going to be overridden.
string input;
void start(){
cout<<"Please input your password: ";
cin>> input;
if (input == password)
{
cout<< "Correct";
}//correct
if (input == "dsx413"){
password == "password"; //what is overriding it. but for some reason is overriding
start(); //restarts from the top but doesn't reset password.
input;
}//changer