#include using namespace std; int main() { int k; cin >> k; if(k %180 == 90) { cout << "Yes" << endl; } else { cout << "No" << endl; } }