关键思路: 列表的排序函数:list.sort()

# 输入第1行:输入个数,输出个数
n1 = input()
x,y = map(int, n1.split())

# 输入第2行:元素
n2 = input()
n2_list = list(map(int,n2.split()))
# 列表中元素排序
n2_list.sort()

# 输出排序好的前n个数
for i in range(y):
   print(n2_list[i],end=" ")