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