#include <iostream>
#include <cstdio>
#include <cstdlib>
usingnamespace std;
int main(int nNumberofArgs, char* pszArgs[])
{
int nMonth;
cout << "Please Enter the day and Month";
cin >> nMonth;
switch (nMonth)
{
case 1/1:
cout << "Its the first of January" << end1;
break;
case 2/1:
cout << "Its the second of January" << end1;
break;
default:
cout << "This is not valid input"
<< " Restart and try again"
<< "Remember the format must be dd/mm" <<end1;
}
system ("pause");
return 0;
}