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