MQ-3 alcohol sensor

Your confusing 'Value' with 'value'. C++ is case sensitive so these are totally separate variables.
Get rid of this line as it's not needed

int value = 0;

Correct case of these two lines so they say Value and not value

    lcd.println(value);
    Serial.println(value,DEC);