int main()
{
long a,b,c,d;
a=321;
b=54321;
c=12211;
d=98997;
printf("%d\n",a);
printf("%d\n",b);
printf("%d\n",c);
printf("%d\n",d);
return 0;
}