алгначцел s, tввод sввод tесли не s > -4 или t < 3 то вывод "YES" иначе вывод "NO"всекон
var s, t: integer;begin readln(s); readln(t); if not(s > -4) or (t < 3) then writeln("YES") else writeln("NO")end.
DIM s, t AS INTEGERINPUT sINPUT tIF NOT s > -4 OR t < 3 THEN PRINT "YES"ELSE PRINT "NO"ENDIF
s = int(input())t = int(input())if not (s > -4) or (t < 3): print("YES")else: print("NO")
#include <iostream>using namespace std; int main(){ int s, t; cin >> s; cin >> t; if (!(s > -4) || (t < 3)) cout << "YES" << endl; else cout << "NO" << endl; return 0;}