Ответ:
print('This program takes numbers and returns the sum')
total=0
for i in range(3):
x=int(input('Введите число: '))
total=total+x
print('The total is:', total)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
print('This program takes numbers and returns the sum')
total=0
for i in range(3):
x=int(input('Введите число: '))
total=total+x
print('The total is:', total)