#include using namespace std; int main() { int i=199,j=0,x; do { cout<>x; if(x<0) { ++i; ++j; } else { --i; } } while(x!=0); return 0; }