# include<LiquidCrystal.h>
LiquidCrystal lcd(13,12,11,10,9,8,7,6,5,4,3);
void setup() {
lcd.begin(16,2);
lcd.clear();
// put your setup code here, to run once:
}
void loop() {
lcd.setCursor(0,0);
lcd.print("MSBTE");
// put your main code here, to run repeatedly:
}