#include <LiquidCrystal.h>
LiquidCrystal lcd(12,11,10,9,8,7);
int a=0;
int sum=0;
void setup()\
{
//put your setup code here, to run node:
lcd.begin(15,15);
for (a; a<6; a++)
{
lcd.print(a);
sum= sum+a;
}
lcd.print("=");
lcd.print(sum);
}
void loop()
{
//put your main code here, to run repeatedly:
}