对于输入的 个整数,升序输出其中最小的 个。
输入描述:
第一行输入两个整数 。第二行输入 个整数 代表给定的数字。
输出描述:
在一行中升序输出最小的 个整数。
示例1
输入
5 2 1 3 5 7 2
输出
1 2
加载中...
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class Main { public static void main(String[] args) throws IOException { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); } }
#include
#include
using namespace std; int main(){ }
5 2 1 3 5 7 2
1 2