def yn(hantei, yes='Yes', no='No'): print(yes if hantei else no) def p(*args): print(*args) yn(10<=int(input())<=99)