执行下面的程序,输入哪个数,结果是yes?( )
x = int(input()) if x % 10 == 7 and x % 7 == 0: print("yes") else: print("no")
21
27
49
77