def count_objects(input_text):
    objects = input_text.split(", ")
    print("Objects:", objects)

    return len(objects)