#include <iostream>
using namespace std;
#include <string>
int main()
{
string Name = "Vaibhav_Yadav", R_Name;
int Roll = 2021071042, roll_no;
cout<<"Authentication Please Verify Yourself"<<endl;
try{
cout<<"Enter Your Name: ";
getline(cin, R_Name);
cout<<"Enter Your Roll No: ";
cin>>roll_no;
if(R_Name == Name && Roll == roll_no){
cout<<"Login Success"<<endl;
}else{
throw 401;
}
}
catch(...){
cout<<"Authentication failed"<<endl;
cout<<"Access Not Allowed"<<endl;
}
return 0;
}