运行下列程序,输出的结果是?( )
def fn(x, y): if x >=y: return x-y else: return y print(fn(4, 7),fn(8, 5))
7 3
7 5
-3 5
-3 3