#include <LiquidCrystal.h>
// Initialize the library with the numbers of the interface pins
LiquidCrystal lcd(15, 4, 18, 19, 23, 5);
void setup() {
lcd.begin(16, 2); //
lcd.setCursor(0, 0); //
lcd.print("pruthvi");
lcd.setCursor(0, 1); //
lcd.print("12110408");
}
void loop() {
}