include <iostream>

using namespace std;

int main()
{
cout<<"I just deleted some important files. Now, you will do as I say.\n";
int decision;
cout<<"Now, do as I say or those files will be forever lost. Press 1 for yes and 0 for no.\n";
cin>>decision;
if (decision == 1) {
cout<<"You have taken the right decision, my friend.\n";}
else if (decision > 1) {
cout<<"Are you a dumbass?\n";}
else if (decision == 0) {
cout<<"You will regret this!\n";}
for (; decision == 0; ) {
cout<<"I will give you another chance.\n";
cin>>decision;}
for (; decision > 1 {
cout<<"Press 1 for yes and 0 for no.\n";
cin>>decision;}
}






===

I am trying to figure out how to make the program return to an earlier line to make this work properly just as I intended.