#include<bits/stdc++.h>
using namespace std;
int main(){
	float n=100;
	do{
		n=n/2;
	}while(n>=0.5);
	cout<<n;
}

/**************************************************************
	Problem: 1062
	User: zengyixuan
	Language: C++
	Result: Wrong Answer
****************************************************************/