I would like to know if there's a simpler way to write the condition of the if statement. Something like item1, item2 == "wood":. I currently have this code:
item1 = input("item1: ")
item2 = input("item2: ")
if item1 == "wood" and item2 == "wood":
print("You created a stick")