#include #include main(){ long long N; scanf("%lld",&N); int ans = ceil(sqrt(N/3)) + 1; printf("%d",ans); }