#include using namespace std; int main() { int n; cin >> n; if (n % 6) cout << "No" << endl; else cout << "Yes" << endl; return 0; }