void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
int Count;
while (Count <= 10) { // You Will Also add Extra Number's e.g: 1 - 1000.
Serial.print("Count: ");
Serial.println(Count);
Count++;
delay(1000);
}
}
void loop() {
// put your main code here, to run repeatedly:
}