
cout << "thats the first word that came to your mind? weird...\n"<< endl;
system("cls");
getline (cin,ITSASTRING); // getting the input from this line and inputting it into ITSASTRING
stringstream(ITSASTRING) >> firstname; // transferring data from ITSASTRING to firstname
getline (cin,firstname);