Code:
#include <iostream>
using namespace std;
int main()
{
int a = 319;
int b;
int c;
cout<<"What is your password servant?";
cin>>b;
{ if(b == a)
cout<<"Find me my Onyx staff & ill reward you.";
}
{ if(b != a)
cout<<"Thank you for returning my life's work.";
}
cin>>c;
return 0;
}