int a = 2;
int b = 3;
int c = 4;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println((a + b) * c);
}
void loop() {
// put your main code here, to run repeatedly:
}
int a = 2;
int b = 3;
int c = 4;
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
Serial.println((a + b) * c);
}
void loop() {
// put your main code here, to run repeatedly:
}