void setup() {
  Serial.begin(115200);
}

void loop() {
  delay(millis());
  Serial.println(millis() / 1000);
}