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