#include using namespace std; using ull = uint64_t; using ll = int64_t; #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define repll(i, n) for (ll i = 0; i < (ll)(n); i++) #define N4(f) \ f(0,1) \ f(0,-1) \ f(1,0) \ f(-1,0) #define N8(f) \ f(y+1,x+1) \ f(y+1,x+0) \ f(y+1,x-1) \ f(y+0,x+1) \ f(y+0,x-1) \ f(y-1,x+1) \ f(y-1,x+0) \ f(y-1,x-1) #define N9(f) \ f(y+1,x+1) \ f(y+1,x+0) \ f(y+1,x-1) \ f(y+0,x+1) \ f(y+0,x+0) \ f(y+0,x-1) \ f(y-1,x+1) \ f(y-1,x+0) \ f(y-1,x-1) signed main() { int a,b,c;cin>>a>>b>>c; cout<<(a*b*c%6==0?"Yes":"No")<