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