#include<LiquidCrystal_I2C.h>
#define address 0x27
#define Lcd_clm 16
#define Lcd_row 2
LiquidCrystal_I2C lcd(address,Lcd_clm,Lcd_row);

void setup() {
  lcd.begin(16,2);
  lcd.init();
  lcd.backlight();
  lcd.setCursor(3,0);
  lcd.print("Gnanmbal");
  // put your setup code here, to run once:

}

void loop() {
  // put your main code here, to run repeatedly:

}