import random
a = int(input())
numbers = 0
b = 0
while b < a:
value = random.randint(0,100)
numbers = numbers + value
b = b + 1
print("Сумма: ", numbers,"| Кількість значень", a)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
import random
a = int(input())
numbers = 0
b = 0
while b < a:
value = random.randint(0,100)
numbers = numbers + value
b = b + 1
print("Сумма: ", numbers,"| Кількість значень", a)