void setup() {
  // put your setup code here, to run once:
  DDRD=B11111111;
  PORTD=0;
}

void loop() {
  PORTD=10;
  delay(1000);
  PORTD=186;
  delay(1000);
  // put your main code here, to run repeatedly:

}