import time realUsername = "Philipp" realPassword = "Wolf" realCheck = "cat" time.sleep(1) userUsername = input("Enter your name: ") print(' ') time.sleep(1) userPassword = input("Enter your last name: ") time.sleep(1) print(' ') if userUsername == realUsername: if userPassword == realPassword: print("Correct") time.sleep(1) print("You are free to proceed") print("Another question if it is really you") time.sleep(3) userCheck = input("What is your favorite Animal? ") time.sleep(1) print(' ') if userCheck == realCheck: print('That is Correct') blast = input('Do you want to send a NUKE? (y/n): ') if blast.lower() == 'y': count = 10 while count > 0 : time.sleep(0.5) print( count ) time.sleep(0.5) count = count - 1 time.sleep(0.5) print("NUKE launched!") elif blast.lower() == 'n': print("NUKE aborted.") else: print("Invalid input. Please enter 'y' for yes or 'n' for no.") else: print('Sorry, but that is wrong! You cant come in here!') else: print('Sorry, but I cant give you access') else: print('Sorry, but your Name is not recognised')