#include int main() { int n; scanf("%d", &n); if (10 <= n && n <= 99) { printf("Yes\n"); } else { printf("No\n"); } return 0; }