8)a, b, c = map(int, input().split())
print("YES") if (a+b > 0) or (b+c > 0) or (a+c > 0) else print("NO")9)n = int(input())
s = (n // 100) + ((n % 100) // 10) + (n % 10)
print("NO") if s % 2 else print("YES")
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
8)
a, b, c = map(int, input().split())
print("YES") if (a+b > 0) or (b+c > 0) or (a+c > 0) else print("NO")
9)
n = int(input())
s = (n // 100) + ((n % 100) // 10) + (n % 10)
print("NO") if s % 2 else print("YES")