#inclde<iostream> using namespace std; int main() { int n; cin>>n; while(1){ cin>>n; if(n<=100&&n>=0){ cout<<n<<endl; return 0; } } return 0; }