bool Est;
int Red = 3;
int Blue = 5;
void setup() {
  // put your setup code here, to run once:
pinMode(Red, OUTPUT);
pinMode(Blue, OUTPUT);
}

void loop() {
  // put your main code here, to run repeatedly:
digitalWrite(Red, Est);
digitalWrite(Blue, Est);
Est = !Est;
delay(500);
}