#39388: c++ ans


yp11251120@yphs.tp.edu.tw (908-43劉濟緯)


#include <bits/stdc++.h>

using namespace std;
int main()
{
    int x[25]{0},a;
    cin>>a;
    for(int i=1; i<=3; i++)
    {
        int b;
        cin>>b;
        x[b]=1;
    }
    for(int i=a; i>0; i--)
    {
        if(x[i]==0) cout<<"No. "<<i<<endl;
    }
}