#include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cstdlib>
#include<string>
using namespace std;
#define maxn 1005
int n,b;
int head[maxn],tot=1,root[maxn],belong[maxn],top,cnt,stk[maxn];
struct node
{
int to,next;
}e[2*maxn];
void add(int u,int v)
{
++tot;
e[tot].to=v;
e[tot].next=head[u];
head[u]=tot;
}
void dfs(int u,int father)
{
int bottom=top;
for(int i=head[u];i;i=e[i].next)
{
int v=e[i].to;
if(v==father)
continue;
dfs(v,u);
if(top-bottom>=b)
{
root[++cnt]=u;
while(top!=bottom)
{
belong[stk[top--]]=cnt;
}
}
}
stk[++top]=u;
}
int main()
{
scanf("%d%d",&n,&b);
for(int i=1;i<n;i++)
{
int x,y;
scanf("%d%d",&x,&y);
add(x,y);
add(y,x);
}
dfs(1,-1);
while(top)
{
belong[stk[top--]]=cnt;
}
printf("%d\n",cnt);
for(int i=1;i<=n;i++)
{
printf("%d%c",belong[i],i==n?‘\n‘:‘ ‘);
}
for(int i=1;i<=cnt;i++)
{
printf("%d%c",root[i],i==cnt?‘\n‘:‘ ‘);
}
return 0;
}