Skip to content

Commit dc5131d

Browse files
committed
1065 - Even Between five Numbers
1 parent 3dd33c5 commit dc5131d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

Beginner/1065.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
count: int = 0
2+
3+
for i in range(6):
4+
n = int(input())
5+
if n % 2 == 0:
6+
count += 1
7+
else:
8+
print("{} valores pares".format(count))

0 commit comments

Comments
 (0)