def carbon_dioxide(oil):
    barrels = oil/158.987
    gas = barrels*74
    co2 = gas*2.3
    return co2

