LCD Timer

Yashar, try this version of setup in your code.
If you don't see the Hello World display followed by the time then check your connections.

void setup()
{
  lcd.begin(20,4);                   // open the LCD
  // Print a message to the LCD.
  lcd.print("hello, world!");
  delay(2000);  
  lcd.clear();
}