#include<bits/stdc++.h> using namespace std; int main(){ int a,v; cin>>a>>v; for(int i=1;i<=a;i++){ if(i==v){ continue; } cout<<i<<endl; } }
** 求解 **