fork download
  1. n=int(input())
  2. licznik=0
  3. for i in range(n):
  4. x=int(input())
  5. if x%2==1: licznik=licznik+x
  6. print(licznik)# your code goes here
Success #stdin #stdout 0.07s 14108KB
stdin
7
2
3
1
1
1
1
1
stdout
8