#include using namespace std; int main() { int x=0,y=199,v; while(true) { cout<>v; if(v<0) x++; else if(v>0) y--; else break; } return 0; }