int Count =0;
int Led=5;
void setup() {
Serial.begin(9600);
pinMode (Led,OUTPUT);
// put your setup code here, to run once:
}
void loop() {
Count++;
delay(100);
Serial.println(Count);
if(Count==5) {
digitalWrite (Led,HIGH);}
if (Count==10){digitalWrite(Led,LOW);}
}