print("Jesse, we need to cook")
rsp = input("Do you want to cook with Walter White?")
if rsp == "yes":
    print("Yes Jesse, we will make bank")
else:
    print("Come on Jesse, we need to cook meth")
    rsp2 = input("Do you want to cook with Walter White?")
    if rsp2 == "yes":
        print("Thank you Jesse, we will cook meth")
    else:
        print("Jesse, I'm reporting you to the authorities Jesse")
Jesse, we need to cook
Come on Jesse, we need to cook meth
Thank you Jesse, we will cook meth