//Mateo Alonso
//09/7/2022
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
int counter = 0;
while(counter <= 20 ){
if(counter >= 5 && counter< 15) {
Serial.print(counter);
Serial.print("\n");
}
counter = counter + 1;
}
}
void loop() {
// put your main code here, to run repeatedly:
}