Safe/password
#include <iostream>
using namespace std;
int main()
{
int t;
cin >> t;
int y = 123098666;
if (t == y){
cout << "Password accepted." << endl;
cout << " " << endl;
cout << "------------------" << endl;
cout << " " << endl;
cout << "Welcome." << endl;
cout << " " << endl;
cout << "------------------" << endl;
cout << " " << endl;
cout << "This is safe.\nIt will always be safe." <<endl;
}
else{
cout << "Password Denied.";
}
return 0;
}