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