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