a=int(input())
b=int(input())
s=0
for i in list(str(a)+str(b)):
s+=int(i)
print('yes' if s==a+b else 'no')
a=int(input())
b=int(input())
s=0
for i in list(str(a)+str(b)):
s+=int(i)
print('yes' if s==a+b else 'no')