We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3dd33c5 commit dc5131dCopy full SHA for dc5131d
Beginner/1065.py
@@ -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