I am getting error in my arduino code

int thumb;
int first_finger;
int second_finger;
int third_finger;
int fourth_finger;
#include

// initialize the library by associating any needed LCD interface pin
// with the arduino pin number it is connected to
const int rs = 12, en = 11, d4 = 5, d5 = 4, d6 = 3, d7 = 2;
LiquidCrystal lcd(rs, en, d4, d5, d6, d7);
void setup() {
// put your setup code here, to run once:
pinMode(A0, INPUT);
pinMode(A1, INPUT);
pinMode(A2, INPUT);
pinMode(A3, INPUT);
pinMode(A4, INPUT);
Serial.begin(9600);
lcd.begin(16, 2);

}

void loop() {
// put your main code here, to run repeatedly:
int thumb = analogRead(A0);
int first_finger = analogRead(A1);
int second_finger = analogRead(A2);
int third_finger = analogRead(A3);
int fourth_finger = analogRead(A4);
Serial.print(thumb);
Serial.print("\t");

Serial.print(first_finger);
Serial.print("\t");

Serial.print(second_finger);
Serial.print("\t");

Serial.print(third_finger);
Serial.print("\t");

Serial.println(fourth_finger);
Serial.print("\t");

if(thumb >=20 )
{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("I NEED WATER");
delay(500);

}

else if(first_finger >=20 )
{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("I NEED FOOD");
delay(500);

}
else if(second_finger >=20 )
{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("RESTROOM");
delay(500);
}

else if(third_finger >=20 )
{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("MY NAME IS HELP");
delay(500);
}

else if(fourth_finger >=20 )
{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("I AM FROM HR");
delay(500);

}

else{
lcd.clear();
lcd.setCursor(1,0);
lcd.print("NOTHING");

}

}

'I am getting error in code to include filename when i include it it shows error that lcd is not recognized. Help ps- ( i am total newbie)'

Welcome to the forums. Take a few moments to help us help you. Read this: How to get the best out of this forum - Using Arduino / Installation & Troubleshooting - Arduino Forum

Then, go back and edit your post and put your code inside code tags which makes it easy for anybody to cut & paste.

Also, in the IDE, there is a super handy button near the bottom that says "copy error" (or something like that). Do that and paste it here as well so we see the exact error message

Welcome to the forum

Please follow the advice given in the link below when posting code, in particular the section entitled 'Posting code and common code problems'

Use code tags (the </> icon above the compose window) to make it easier to read and copy for examination

#include

What did you want to include ?