Ответ:
x = [int(i) for i in input().split()]
count = 0
for i in x:
if i > 0:
count+=1
print(count)
Объяснение:
Вводить список чисел через пробел
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
x = [int(i) for i in input().split()]
count = 0
for i in x:
if i > 0:
count+=1
print(count)
Объяснение:
Вводить список чисел через пробел