#include <LiquidCrystal.h>
LiquidCrystal lcd(13,12,27,26,25,33);
void setup() {
lcd.begin(16,2);
}
void loop() {
// put your main code here, to run repeatedly:
lcd.setCursor(1,0);
lcd.print("Welcome to the ");
lcd.setCursor(5,1);
lcd.print("Class");
}