google or search through pvps
Answer:Energy decreases as it moves up trophic levels because energy is lost as metabolic heat when the organisms from one trophic level are consumed by organisms from the next level.
Explanation:
def cookie_Recipe(recipe):
sugar=(0.03125*recipe)
butter=(0.02083333333*recipe)
flour=(0.05729166666*recipe)
LF1=round(sugar, 2)
LF2=round(butter,2)
LF3=round(flour, 2)
print("You will need:")
print(LF1, "cups of sugar")
print(LF2, "cups of butter")
print(LF3, "cups of flour")
print("To make", recipe, 'cookies')
recipe=int(input("How many cookies do you want to make?\n"))
cookie_Recipe(recipe)