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