Ответ:
a = 16
Объяснение:
a,b = 1,0
while True:
a = a*2
b = b+1
if b>=4:
print ("a =", a)
break
Copyright © 2025 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
a = 16
Объяснение:
a,b = 1,0
while True:
a = a*2
b = b+1
if b>=4:
print ("a =", a)
break