#include <Wire.h>
#include <LiquidCrystal_I2C.h>
LiquidCrystal_I2C lcd(0x27, 16, 2);
void setup() {
lcd.begin(16, 2);
lcd.backlight();
lcd.print("Nandhini");
}
void loop() {
lcd.setCursor(2, 1); // Set the cursor to the second line of the LCD
lcd.print("Prithika");
}