float temperature = 20.5;

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

}

void loop() {
  if (temperature > 30) {
Serial.println("tem sup à 40");
}

else {
Serial.println("tem sup à 40");
}

}