Start: Nov, 12, 2017 10:00:00
2017秋Python程序设计基础培训第二次作业
End: Nov, 19, 2017 12:00:00
Time elapsed:
Time remaining:

Problem_ID: D
Result: Accepted
Time: 79ms
Memory: 24436kB
Author: yiye
In contest: 1122

while True :
  try:
    s=list(map(int,input().split()))
    n=0
    i=1
    while i<=s[0] :
       if s[i]%2!=0 :
           n+=s[i]
       i+=1   
    print(n) 
  except EOFError:
       break;