/*
maximum field width is specified by
placing a number between the % symbol and the
conversion character
*/
#include<stdio.h>
main(){
int x,y,z;
scanf("%3d %3d %3d",&x,&y,&z);
fflush(stdin);
printf("%d %d %d\n",x,y,z);
}
main(){
int dd,mm,yy;
scanf("%d/%d/%d",&dd,&mm,&yy);
fflush(stdin);
printf("date is %d-%02d-%04d\n",dd,mm,yy);
}
This page created with Netscape Navigator Gold (17/9/1999)