#include <LiquidCrystal.h>
LiquidCrystal lcd(11, 9, 5, 4, 3, 2);
void setup() {
lcd.begin(16, 2);
}
void loop() {
lcd.setCursor(0, 0);
lcd.print("Sandun");
lcd.setCursor(0, 1);
lcd.print("Dilshan");
for(int i=1; i<=50; i++){
lcd.setCursor(11, 1);
lcd.print(i);
delay(100);
}
}