include<iostream>
include<conio.h>
using namespace std ;
int main (){
string name;
cin>>name;
cout<<name;
cout<<endl;
getch();
return 0;}
//if u run the prog, and u enter ur first and last name after hitting enter it will show u the first name. My professor asked me to search why this is happening, i know i will find answers here, thank you guys.