Advertisement
Guest User

Untitled

a guest
Dec 15th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. using namespace std;
  4.  
  5. int main()
  6. {
  7. string user;
  8. string password;
  9.  
  10. cout << "Username?" << endl;
  11. cin >> user;
  12.  
  13. cout << "Password?" << endl;
  14. cin >> password;
  15.  
  16. if (user == "root" && password == "toor"){
  17. cout << "Welcome back, root!" << endl;
  18. }
  19. else {
  20. cout << "Orange is a stupid fucking nigger" << endl;
  21. }
  22. return 0;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement