#include int main(){ int num = 0; scanf("%d",&num); int tmp = 1; int ans = 0; while(tmp <= num){ ans++; tmp *= 2; } printf("%d",ans); }