执行下面Python语句,当用键盘输入200时,显示结果是( )。
n = int(input()) if n >= 200: print(2.5 * n) else: print(1.5 * n)
500
500.0
300
300.0