Диана Бочковенкова, 630 группа MaxSubseq 986
Андрей Филиппов 608 MaxSubseq 858
n1prev = int(input())n1x_prev = int(input())
2max = 12result = 1
3count = 13max_result = 1
4while True:4while True:
n5    cur = int(input())n5    x_cur = int(input())
6    if cur == 0:6    if x_cur == 0:
7        break7        break
n8    if cur >= prev:n8    if x_cur >= x_prev:
9        count += 19        result += 1
10    else:10    else:
t11        if count > max:t11        if max_result < result:
12            max = count12            max_result = result
13        count = 113        result = 1
14    prev = cur14    x_prev = x_cur
15if count > max:15if max_result < result:
16    max = count16    max_result = result
17print(max)17print(max_result)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op