# Number of elephants total_elephants = 10
# Elephants with legs elephants_with_legs = total_elephants - 2
# Number of legs for an elephant legs_per_elephant = 4
# Total legs total_legs = elephants_with_legs * legs_per_elephant total_legs
Its actual response was correct.
# Number of elephants total_elephants = 10
# Elephants with legs elephants_with_legs = total_elephants - 2
# Number of legs for an elephant legs_per_elephant = 4
# Total legs total_legs = elephants_with_legs * legs_per_elephant total_legs
Its actual response was correct.