А
1
Й
11
У
21
Э
31
Б
2
К
12
Ф
22
Ю
32
В
3
Л
13
Х
23
Я
33
Г
4
М
14
Ц
24
Д
5
Н
15
Ч
25
Е
6
О
16
Ш
26
Ё
7
П
17
Щ
27
Ж
8
Р
18
Ъ
28
З
9
С
19
Ы
29
И
10
Т
20
Ь
30
алгначцел 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;}