运行下列代码,程序的输出结果是( )。
x = 2 y = 3 if x > 2: print("一月") else: if y > 2: print("二月") else: print("三月")
一月
二月
三月
以上选项均错误