float temperature = 20.5;

void setup() {

Serial.begin(9600);

}

void loop() {
if (temperature> 30) {
  Serial.println("temp sur a 40");
  } 

  else {
    Serial.println("temp inf a 40");
} 

}