运行下面的程序,输入哪个数,可使输出的结果为“yes”?( )
x = int(input()) if x % 6 == 0 and x % 10 == 6: print("yes") else: print("no")
12
16
26
36