#include using namespace std; int main(){ ios_base::sync_with_stdio(false); cin.tie(nullptr); long long a,b,c; cin >> a >> b >> c; if(a > b) swap(a,b); if(b > c) swap(b,c); if(a > b) swap(a,b); bool two = false,three = false; if(a%2 == 0) two = true; if(b%2 == 0) two = true; if(c%2 == 0) two = true; if(a%3 == 0) three = true; if(b%3 == 0) three = true; if(c%3 == 0) three = true; if(two == false || three == false || b < 2 || c < 3) cout << "No\n"; else cout << "Yes\n"; }