#include<Wire.h>
#include<LiquidCrystal_I2C.h>

LiquidCrystal_I2C lcd(0x27, 16,2);

void setup ()
{
lcd.init();
lcd.backlight();
 // put your setup code here, to run once;
lcd.setCursor(2,0);
lcd.print("NUR AIN");
lcd.setCursor (4,1);
lcd.print("XII IPA 4");
delay(4000);
lcd.clear();
}

void loop()
{
lcd.setCursor(2,0);
lcd.print("semangat menjalani harimu kawan");
lcd.setCursor(1,1);
lcd.print("Cemungut");
delay(4000);
}