#include #define llint long long using namespace std; int main(void) { ios::sync_with_stdio(0); cin.tie(0); llint n; cin >> n; if(n % 6) cout << "No" << endl; else cout << "Yes" << endl; return 0; }