#include using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; template inline bool chmax(T &a, const T &b) { if (a < b) { a = b; return true; } return false; } template inline bool chmin(T &a, const T &b) { if (a > b) { a = b; return true; } return false; } // #include // using namespace atcoder; // using mint = modint1000000007; // using mint = modint998244353; // const int MOD = 1000000007; // const int MOD = 998244353; int main() { cin.tie(nullptr); ios_base::sync_with_stdio(false); string s; cin >> s; cout << (s.size() == 2 ? "Yes" : "No") << endl; return 0; }