运行下面程序,输出的结果是( )。
def func(x): for i in range(1, x): if x % i == 0: print(i, end = ' ') func(15)
1 3
1 3 5
3 5
3 5 15