name = input (" What is your name ") print("Hello", name ) if name == "Prabvir" : print("Hey there Prabvir") print("-------------------------") print ("security check") realPassword = "5ecr3t" userPassword = input(" Enter Password:" ) if userPassword == realPassword : print("Correct!") print("Welcome Prabvir!") else: print("incorrect") print("System Locked!")