int a = 0;
void setup(){
  //put you setup code here, to run once;
Serial.begin(9600);
}

void loop() {
  //put your main code here, to run repeatedIy;
a = a+1;
Serial.println(a);
delay(1000);
}