import sys input=lambda:sys.stdin.readline().rstrip() N=int(input()) i=0 while N>1: N//=2 i+=1 print(pow(2,i))