import random

antworten = [
    "Interessant!",
    "Erzähl mir mehr.",
    "Warum denkst du das?",
    "Klingt spannend!",
    "Aha, verstehe.",
    "Kannst du das erklären?",
    "Cool!",
    "Das ist lustig!"
]

while True:
    nachricht = input("Du: ")
    if nachricht.lower() == "stopp":
        print("Chatbot: Bis bald!")
        break
    print("Chatbot:", random.choice(antworten))
