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