Лузик Дмитрий Евгеньевич, 527 группа CubeSum 3032
Данила Ковтун 530повс CubeSum 1699
n1num = int(input())n1number = int(input())
2a = 12a = 1
n3b = int(num ** (1 / 3))n3b = round(number ** (1.0 / 3))
4cnt = 04count = 0
5while a < b:5while a < b:
n6    sum = a ** 3 + b ** 3n6    current = a ** 3 + b ** 3
7    if sum > num:7    if current > number:
8        b -= 18        b -= 1
n9    elif sum < num:n9    elif current < number:
10        a += 110        a += 1
11    else:11    else:
n12        cnt += 1n12        count += 1
13        a += 113        a += 1
14        b -= 114        b -= 1
t15print(cnt)t15print(count)
Legends
Colors
 Added 
Changed
Deleted
Links
(f)irst change
(n)ext change
(t)op