#include<iostream>
#include<string>
using namespace std;
void main(){
int i = 1, a[100];
cin >> a[0];
while (getchar()!='\n'){
cin >> a[i++];
}
cout << "输入的数组为:" << endl;
for (int j = 0; j < i; j++){
cout << a[j] << endl;
}
system("pause");
}
}
for (int i = 0; i < m; i++)
cout << b[i] << endl;
system("pause");
}