int a = 12;
int b = 20;
int r;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
r = a + b;
Serial.println(r);
}
void loop() {
// put your main code here, to run repeatedly:
}
int a = 12;
int b = 20;
int r;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
r = a + b;
Serial.println(r);
}
void loop() {
// put your main code here, to run repeatedly:
}