Skip to content

Commit

Permalink
That's Odd... - Python Implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
iamstan13y authored Dec 31, 2021
1 parent 241f87f commit 10c72c5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Sololearn CodeCoach Challenges/Python/ThatsOdd.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
n=int(input())

sum=0
for i in range(n):
num=int(input())
if (num%2)==0:
sum=sum+num
print(sum)

0 comments on commit 10c72c5

Please sign in to comment.