void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
int currentMillis = 15000;
int timerStart = 5000;
int i = currentMillis - timerStart;
Serial.print(i);
}
void loop() {
// put your main code here, to run repeatedly:
}