int numero1 = 10;
int numero2 = 7;
int resultado;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
resultado = numero1/numero2;
Serial.println(resultado);
// put your main code here, to run repeatedly:
delay(10); // this speeds up the simulation
}