运行以下Python程序
运行以下程序 a=eval(input("年龄:")) if a > 10: b=30 else: b=15 print("票价:",b) 当输入12时,输出结果为?
当输入12时,输出结果为?( )
票价: 12
票价: 15
票价: 30
票价: 10