✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Визначте, що буде надруковано в результаті виконання наступного скрипта:
a=23
b=4
while a>b:
if a % 2 == 0:
b=b+a
else:
a = a - 2 * b + 1
print(а)