public static void main(String[] args){
Scanner sc = new Scanner(new BufferedInputStream(System.in));
while(sc.hasNext()){
int m = sc.nextInt();
String str = sc.next();
for(int i=0; i<m; i++){
System.out.println(sc.nextInt());
}
}
}
添加回答
举报
0/150
提交
取消