#include "bits/stdc++.h" // Begin Header {{{ #define all(x) (x).begin(), (x).end() #define rep(i, s, n) for (i64 i = (s), i##_limit = (n); i < i##_limit; ++i) #define repr(i, s, t) for (i64 i = (s), i##_limit = (t); i >= i##_limit; --i) #define repc(i, s, t) for (i64 i = (s), i##_limit = (t); i <= i##_limit; ++i) #define var(type, ...) \ type __VA_ARGS__; \ read(__VA_ARGS__); #ifndef DBG #define dump(...) #endif using namespace std; using i64 = int_fast64_t; using pii = pair; template inline bool chmax(T &a, const U &b) { return b > a && (a = b, true); } template inline bool chmin(T &a, const U &b) { return b < a && (a = b, true); } constexpr int INF = 0x3f3f3f3f; constexpr i64 LINF = 0x3f3f3f3f3f3f3f3fLL; template inline vector makeV(const T &initValue, size_t sz) { return vector(sz, initValue); } template inline auto makeV(const T &initValue, size_t sz, Args... args) { return vector(initValue, args...))>( sz, makeV(initValue, args...)); } template inline istream &operator>>(istream &is, vector &vec) { for (auto &e : vec) is >> e; return is; } inline void read() {} template inline void read(Head &head, Tail &... tail) { cin >> head; read(tail...); } inline void print() { cout << "\n"; } template inline void print(Head &&head, Tail &&... tail) { cout << head; if (sizeof...(tail)) cout << ' '; print(forward(tail)...); } template inline ostream &operator<<(ostream &os, const vector &vec) { static constexpr const char *delim[] = {" ", ""}; for (const auto &e : vec) os << e << delim[&e == &vec.back()]; return os; } template struct Rev { Container &x_; inline Rev(Container &x) : x_(x) {} inline auto begin() { return rbegin(x_); } inline auto end() { return rend(x_); } }; // }}} End Header signed main() { ios_base::sync_with_stdio(false); cin.tie(nullptr); var(int, n); print((n % 90 == 0 && n % 180 != 0) ? "Yes" : "No"); return 0; }