Run ID:93696
提交时间:2024-10-18 23:49:43
#include <bits/stdc++.h> using namespace std; int main() { int f; cin>>f; int a[f]; for(int j = 0;j < f;j++) cin>>a[j]; int k; cin>>k; cout<<k<<' '; for(int i = 0;i<f;i++) { cout<<a[i]<<' '; } }