int p, q, r;
bool s, t, v;
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("Hello, ESP32!");
p = 11;
q = 2;
r = 21;
s=(p-1) < (q+r);
t=(r/3) == q;
v=(s || t) && !t;
Serial.println(s);
Serial.println(t);
Serial.println(v);
}
void loop() {
// put your main code here, to run repeatedly:
// this speeds up the simulation
}