有如下Python程序段:
x=10
y=5
if x/y==x//y:
print("相等")
else:
print("不相等")
执行程序段后,输出的结果是?( )
"相等"
"不相等"
相等
不相等