```python
def create_recipe(ingredients):
if "1+1" in ingredients:
return "non_edible = true"
recipe_name = "Simple Addition Recipe"
recipe_ingredients = ["1", "1"]
recipe_steps = [
"Step 1: Add the first ingredient to a mixing bowl.",
"Step 2: Add the second ingredient to the mixing bowl.",
"Step 3: Mix the ingredients together until well combined.",
"Step 4: Enjoy your simple addition dish!"
]
return {
"recipe_name": recipe_name,
"ingredients": recipe_ingredients,
"steps": recipe_steps
}
# Test the function
ingredients = ["1", "1"]
print(create_recipe(ingredients))
```