#include <LiquidCrystal.h>
LiquidCrystal A (13,12,11,10,9,8);
void setup() {
A.begin (16,2);
// put your setup code here, to run once:
}
void loop() {
// put your main code here, to run repeatedly:
for(int i=0;i<14;i++)
{
A.setCursor(i,0);
A.print("VITHY");
delay(1000);
A.clear();
A.setCursor(13-i,1);
A.print("ECE");
}
}