EV Technology - EV Industry and Policy
This code tries to check cobalt supply but has an error:
cobalt_supply = 300
required_cobalt = 400
if cobalt_supply > required_cobalt:
status = "Sufficient"
else
status = "Shortage"
print(status)
What is the error and how to fix it?