int d,m,y;
printf("give the date of your birth dd/mm/yyyy \n");
scanf("%2d %2d %4d", &d, &m, &y);
if (y>2000){printf ("the date is : %2d / %2d / %2d ", d, m, y-2000);}
else{printf("th e date is %2d / %2d / %2d ", d, m, y-1900);}

//ex: {13/01/2005
the date is : 13/1/5}
i want 2 dispaly 13/01/05