int num = 0;
void setup() {
Serial.begin(9600); // put your setup code here, to run once:
Serial.println("Starting to count now...");
}
void loop() {
num = num + 1;
Serial.println(num); // put your main code here, to run repeatedly:
delay(250);
}