void setup() {
int a = 5;
int b = 10;
int result;
result = a+b;
// put your setup code here, to run once:
Serial.begin(115200);
Serial.print("Result is ");
Serial.println(result);
}
void loop() {
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}