#include using namespace std; int main() { int a[3] = {0, 2, 5}; int x; cin >> x; bool good = true; for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { if (a[i] + a[j] == x && a[i] == a[j]) good = false; } } if (good) puts("No"); else puts("Yes"); return 0; }