执行下面的程序,当用键盘输入10时,输出结果是( )。
n = int(input()) if n >= 10: print(10.0 * n) else: print(15.0 * n)
10.0
100.0
150
150.0