void setup() {
// put your setup code here, to run once:
int i;
for(i = 1; i< 3; i++) {
pinMode(i, OUTPUT);
digitalWrite(i, HIGH);
}
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite(1, HIGH);
digitalWrite(1, LOW);
}