/* krm 2025-03-25 */

void setup() {
  Serial.begin(9600);
}

void loop() {
  int a = 2;
  int b = 3;
  int sum = a + b;
  Serial.println("Sum of 2 and 3 is " + sum);
}
