#include<iostream>
using namespace std;
long A,B,C;
main(){
	cin>>A>>B>>C;
	cout<<((A+B+C)%3?"No":"Yes")<<endl;
}