运行下面Python语句,输入200,显示结果是( )。
n = int(input()) if n >= 200: print(2.5 * n) else: print(1.5 * n)
500.0
400.0
300.0
200.0