def main(): n = int(input()) print("Yes" if 10 <= n <= 99 else "No") if __name__ == "__main__": main()