#include #define endl '\n' typedef long long ll; using namespace std; int main(void) { ios::sync_with_stdio(false); cin.tie(0); string n; cin >> n; string ans = "Yes"; for (int i = 0; i < n.size(); i++) { if (n[i] != '9') ans = "No"; } cout << ans << endl; return 0; }