Files
pythonmc/levieProekti/Olymp2020/uoi/a+b=c.py
BarsTiger 68fb5410ee 1
2021-10-15 12:46:53 +03:00

18 lines
189 B
Python

a, b, c = input().split()
a = int(a)
b = int(b)
c = int(c)
exist = "No"
if a + b == c:
exist = "Yes"
if a + c == b:
exist = "Yes"
if c + b == a:
exist = "Yes"
print(exist)