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