const int nova = 12;
const int lyta = 7;
void setup() {
// put your setup code here, to run once:
pinMode (nova,OUTPUT);
pinMode (lyta,OUTPUT);
}
void loop() {
// put your main code here, to run repeatedly:
digitalWrite (nova,HIGH);
digitalWrite (lyta,HIGH);
}