#include <LiquidCrystal.h>
LiquidCrystal a (12,11,10,9,8,7);
void setup() {
a.begin(16,2);
}
void loop() {
a.setCursor(0,0);
a.print("hello");
a.setCursor(11,0);
a.print("hello");
a.setCursor(0,1);
a.print("hello");
a.setCursor(11,1);
a.print("hello");
}