문제 출처: https://www.acmicpc.net/problem/2576
Bronze 3
n % 2 == 1 이라는 홀수 조건문으로 구분한다.
if __name__ == '__main__':
arr = []
res = 0
for i in range(7):
x = int(input())
if x % 2 == 1:
arr.append(x)
res += x
arr.sort()
if res == 0:
print(-1)
else:
print(res)
print(arr[0])