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