#include using namespace std; int main(){ int n,m,v; cin>>n>>m; set S,T; while(n--){ cin>>v; S.insert(v); if(v<=m)T.insert(v); } cout<