Ответ:
python
Объяснение:
c = [ ]
for x in range(5):
s = input()
c.append(s)
d = 0
for i in c:
if int(i) == 12:
d += 1
else:
pass
print(d)
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Ответ:
python
Объяснение:
c = [ ]
for x in range(5):
s = input()
c.append(s)
d = 0
for i in c:
if int(i) == 12:
d += 1
else:
pass
print(d)