#include<iostream>
#include<windows.h>
#include<string.h>
#include<stdio.h>
usingnamespace std;
int main()
{
char A[20];
cout<<"Enter your password \n";
gets(A);
if(strcmp(A,"Thanosbuster")==0)
{ cout<<"Welcome Mr Stark"<<"\n";
cout<<"How are you Mr Stark?"<<"\n";
char B;
cin >> B;
char fine;
cin >> fine;
if ( fine)
cout<<"I am glad you are in good emotional state sir.\n";
else
cout<<"Sorry to hear that sir.\n";
cout<<"Are going to armour up today sir?\n";
char C;
cin >> C;
char Yes;
cin >> Yes;
if(Yes)
cout<<"I recommend a complete port charge of your arc reactor"<<" if you are going out today i shall cancel the training meeting.\n";
else
cout<<"I hope you have your training meeting with SHEILD today in mind sir if not, this is a reminder.\n";
cout<<"Wnat type of cloth style do you want to wear?Formal or Casual?\n";
char D;
cin >> D;
char Formal;
cin >> Formal;
if(Formal)
cout<<"Oh so you want to be in buisness mode,as you wish sir.";
else
cout<<"Oh so you want to wear casuals ,good choise sir.";
cout<<"Have a good day sir."; }
else
cout<<"Intruder alert shutting down";
return 0;
}