View difference between Paste ID: qFxbh0am and JPjaKmgh
SHOW: | | - or go back to the newest paste.
1-
user = input("what is your username?")
1+
yes = "ACCEPTED"
2-
password = input("What is your password?")
2+
nope = "DENIED"
3-
print(user)
3+
while nope:
4-
print(password)
4+
    user = input("what is your username?")
5-
input("username?")
5+
    password = input("What is your password?")
6-
if user == input:
6+
    print(user)
7-
    print("ACCEPTED")
7+
    print(password)
8-
else:
8+
    answer = input("username:")
9-
    print("DENIED")
9+
    attempt = input("password:")
10
    if user == answer and password == attempt:print(yes)
11
break
12
else:print(nope)
13
print("GTFO")
14
print("Welcome to Ricks quiz")
15
vege = input("What is your favorite Vegetable?")
16
person = input("Who is your favorite person on TeamSpeak?")
17
place = input("Where are you most comfortable?")
18
print("Ah, so you like to fuck a " + vege + " with " + person + " while at " + place)