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