#include #include using namespace std; ifstream f("sort2.in"); ofstream g("sort2.out"); int x,n,v[110],j; bool ok=0; int main() { while(f>>x) { if(x<100) v[++j]=x,ok=1; } if(ok==0) { g<<"NU EXISTA"; return 0; } sort(v+1,v+j+1); for(int i=1; i<=j; ++i) g<