Sum divisible by D



a=int(input())

b=int(input())

c=int(input())

if(a+b)%c==0:

    print("yes")

else:

print("no")

Post a Comment

0 Comments