int z;
int x = 50;
int y = 5;
void setup() {
Serial.begin(9600);
z = x + y;
Serial.println(z);
}
void loop() {
// put your main code here, to run repeatedly:
}
int z;
int x = 50;
int y = 5;
void setup() {
Serial.begin(9600);
z = x + y;
Serial.println(z);
}
void loop() {
// put your main code here, to run repeatedly:
}