#include using namespace std; template bool cmin(A& a, B b) { return a > b && (a = b, true); } template bool cmax(A& a, B b) { return a < b && (a = b, true); } signed main() { cin.tie(nullptr)->sync_with_stdio(false); long X, Y, Z; cin >> X >> Y >> Z; cout << (((X + Y + Z) % 3) ? "No" : "Yes") << '\n'; }