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: 84ms
Memory: 24436kB
Author: zzzhangxd
In contest: 1122

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