import random

# Define a list of Jesus' teachings
jesus_teachings = [
    "Love your neighbor as yourself.",
    "Blessed are the peacemakers.",
    "Do not judge, so that you may not be judged.",
    "Do to others what you would have them do to you.",
    "Love your enemies and pray for those who persecute you.",
    "Let him who is without sin cast the first stone.",
    "I am the way, the truth, and the life. No one comes to the Father except through me.",
]

# Function to generate a response based on user input
def generate_response(user_input):
    # Choose a random teaching from Jesus' teachings list
    response = random.choice(jesus_teachings)
    return response

# Chat loop
while True:
    user_input = input("You: ")
    response = generate_response(user_input)
    print("Jesus Bot:", response)