21th program input & output

Input : Enter any date in formate (DD-MM-YYYY) : 05-03-2010

Output : 
Day = 05
Month = 03
Year = 2010
//////////////////////////////////////////////////////////////
Input : Enter any date in formate (DD/MM/YYYY) : 05/03/2010

Output : 
Day = 05
Month = 03
Year = 2010
//////////////////////////////////////////////////////////////
Input : Enter any date in formate (DD MM YYYY) : 05/03/2010

Output : 
Day = 05
Month = 03
Year = 2010
//////////////////////////////////////////////////////////////  Input : Enter any date in formate (DD,MM,YYYY) : 05/03/2010

Output : 
Day = 05
Month = 03
Year = 2010
//////////////////////////////////////////////////////////////