#include<cstring>
#include<cstdio>
#define maxn 10001
using namespace std;
inline int read(){
register int x(0),f(1); register char c(getchar());
while(c<'0'||'9'<c){ if(c=='-') f=-1; c=getchar(); }
while('0'<=c&&c<='9') x=(x<<1)+(x<<3)+(c^48),c=getchar();
return x*f;
}
struct edge{
int to,next;
edge(){}
edge(const int &_to,const int &_next){
to=_to,next=_next;
}
}e[maxn<<1];
int head[maxn],k;
inline void add(const int &u,const int &v){
e[k]=edge(v,head[u]);
head[u]=k++;
}
int dp[maxn][2],n;//dp[i][0]是最大距离,dp[i][1]是次大距离
void dfs1(int u,int pre){
for(register int i=head[u];~i;i=e[i].next){
int v=e[i].to;
if(v==pre) continue;
dfs1(v,u);
int tmp=dp[v][0]+1;
if(tmp>dp[u][0]) swap(tmp,dp[u][0]);
if(tmp>dp[u][1]) swap(tmp,dp[u][1]);
}
}
void dfs2(int u,int pre){
for(register int i=head[u];~i;i=e[i].next){
int v=e[i].to;
if(v==pre) continue;
int tmp;
if(dp[u][0]==dp[v][0]+1) tmp=dp[u][1]+1;
else tmp=dp[u][0]+1;
if(tmp>dp[v][0]) swap(tmp,dp[v][0]);
if(tmp>dp[v][1]) swap(tmp,dp[v][1]);
dfs2(v,u);
}
}
int main(){
memset(head,-1,sizeof head);
n=read();
for(register int i=1;i<n;i++){
int u=read(),v=read();
add(u,v),add(v,u);
}
for(register int i=1;i<=n;i++) printf("%d
",dp[i][0]);
return 0;