#include using namespace std; int main(){ int a,b,c; cin >> a >> b >> c; int d=a*b*c; if(d%3==0){ cout<<"Yes"; }else{ cout<<"No"; } return 0; }