#include using ll = long long; using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); ll x,y,z; cin >> x >> y >> z; if ((x % 3) && (y % 3) && (z % 3)) cout << "No\n"; else cout << "Yes\n"; return 0; }