#include <LiquidCrystal_I2C.h>

#define I2C_Addr 0x27
#define LCD_Columns 16
#define LCD_Rows 2

LiquidCrystal_I2C lcd(I2C_Addr, LCD_Columns, LCD_Rows);

void setup() {
  // put your setup code here, to run once:
lcd.init();
lcd.backlight();

lcd.setCursor(0,0);
lcd.print ("Kalatuta");

lcd.setCursor(0,1);
lcd.print ("12C-Wisdom");

}

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

}