#include "libreria.h"
Firstlib Objet;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
}
void loop() {
// put your main code here, to run repeatedly:
delay(1000); // this speeds up the simulation
//Objet.hola();
//Serial.println(Objet.obtener2valores(4,5));
int cuenta = 20207650;
int suma = 0;
while(cuenta != 0){
suma = suma + cuenta % 10;
cuenta /=10;
}
Serial.println(suma);
}