# No.1591 Two Digits # https://yukicoder.me/problems/no/1591 N = int(input()) if 10 <= N <= 99: print('Yes') else: print('No')