this simple cout statement and i do not know why. the outputs are mixed up and i get some random numbers i didnt even input.please help
#include <iostream>
#include <string>
using namespace std;
int main()
{
string Pname, CEmployer;
int age;
cout<<"Patients Name:"<<endl;
getline (cin, Pname);
cout<<"Age:"<<endl;
cin>>age;
cout<<"Current Employer"<<endl;
getline (cin, CEmployer);
cout<<Pname<<endl;
cout<<age<<endl;
cout<<CEmployer;
};