Put the code you need help with here.
#include <iostream>
#include <string>
usingnamespace std
int main()
int day,month,year;
string a = " enter day";
string b =" enter month";
string c= "enter year";
cout << a; cin>>day;
cout<< b; cin>>month;
cout<<c; cin>>year;
cout<< a+b+c;
the part i want to ask is when i add 3 string a, b and c in line "cout<< a+b+c;" how can i make the output of this line in the whole date which format is like 'dd/mm/yyyy'(13/10/2017) but not output like"enter day enter month enter year", which i mean the output is the combination of the input of int(day,month,year) not the strings a,b,c.