Ответ:
s = 1
a = 1
while a!=0:
s *= a
a = int(input())
print(s)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
s = 1
a = 1
while a!=0:
s *= a
a = int(input())
print(s)