/* krm 2025-03-05 */

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

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